aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 51e4b2d..727e920 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,11 @@ tests: build-portmidi
3 $(CC) -Wall example2.c minisdl_audio.c -lm -ldl -lpthread -o example2 3 $(CC) -Wall example2.c minisdl_audio.c -lm -ldl -lpthread -o example2
4 $(CC) -Wall example3.c -L./portmidi -lportmidi -o example3 4 $(CC) -Wall example3.c -L./portmidi -lportmidi -o example3
5 5
6run-example3: 6run-example3: tests
7 LD_LIBRARY_PATH=./portmidi ./example3 7 LD_LIBRARY_PATH=./portmidi ./example3
8 8
9run-example4:
10 $(CC) example4.c -lasound -lm -o example4 && ./example4
11
9build-portmidi: 12build-portmidi:
10 cd portmidi && cmake . && make 13 cd portmidi && cmake . && make