summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 2 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 727e920..3d2191a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,3 @@
-tests: build-portmidi
- $(CC) -Wall example1.c minisdl_audio.c -lm -ldl -lpthread -o example1
- $(CC) -Wall example2.c minisdl_audio.c -lm -ldl -lpthread -o example2
- $(CC) -Wall example3.c -L./portmidi -lportmidi -o example3
+ttdaw: main.c
+ $(CC) -Wall -o ttdaw main.c minisdl_audio.c -lm -ldl -lpthread -lasound -lm
-run-example3: tests
- LD_LIBRARY_PATH=./portmidi ./example3
-
-run-example4:
- $(CC) example4.c -lasound -lm -o example4 && ./example4
-
-build-portmidi:
- cd portmidi && cmake . && make