summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2021-12-22 15:20:13 -0700
committercflip <cflip@cflip.net>2021-12-22 15:20:13 -0700
commit8844d54b4bd5535009a1b70888860490899ca0d5 (patch)
treea03cb2a663299f3bc61f5d981560c5e84e36a483 /Makefile
parentd3fcd2d8dbff9362b47ab94c8b4cc24826077591 (diff)
Refactoring and cleanup
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