summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-10-07 19:58:14 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-10-07 19:58:14 +0200
commit15d5e19422c9b19cd452297ff0d333149c94e787 (patch)
treeba1c00f32ce290cf8c56dd06b8b823fdc1e237da /Makefile
parent40a899bd6ee536eae093337bf2d0dcc8db4e46f1 (diff)
downloadttdaw-15d5e19422c9b19cd452297ff0d333149c94e787.tar.gz
Added Florestan Piano Soundfont
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