diff options
author | cflip <cflip@cflip.net> | 2021-12-22 15:20:13 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2021-12-22 15:20:13 -0700 |
commit | 8844d54b4bd5535009a1b70888860490899ca0d5 (patch) | |
tree | a03cb2a663299f3bc61f5d981560c5e84e36a483 /Makefile | |
parent | d3fcd2d8dbff9362b47ab94c8b4cc24826077591 (diff) |
Refactoring and cleanup
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 |