diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b0edf4e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.lst
+*.rom
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.