From 8844d54b4bd5535009a1b70888860490899ca0d5 Mon Sep 17 00:00:00 2001 From: cflip Date: Wed, 22 Dec 2021 15:20:13 -0700 Subject: Refactoring and cleanup --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3