From ccc8fd77375ede0712e6619fb7f0f4adaf1a2a1f Mon Sep 17 00:00:00 2001 From: rick Date: Tue, 1 Jun 2021 14:25:25 +0200 Subject: [PATCH] feat: Makefile --- Makefile | 5 +++++ README.md | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..98d9125 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +CC=sjasmplus +CFLAGS= + +%: + $(CC) $@.asm --raw=$@.rom diff --git a/README.md b/README.md index 1046388..4b67aa4 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,6 @@ Le compilateur SJASMplus est utilisé afin de compiler les fichiers et [OpenMSX] sjasmplus hello.asm --raw=hello.rom ``` +Il est aussi possible d’utiliser le Makefile avec la commande `make hello`. + Je m'appuie sur [le tuto de Chibiakumas](https://www.chibiakumas.com/z80/helloworld.php#LessonH3) pour le Hello worl.