summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7e0cc0a..4cfed7a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,6 @@
-fmseq: main.cpp
- g++ main.cpp -lSDL2 -o fmseq \ No newline at end of file
+SRC=main.cpp\
+ audio.cpp\
+ gui.cpp
+
+fmseq: ${SRC}
+ g++ ${SRC} -lSDL2 -o fmseq \ No newline at end of file