aboutsummaryrefslogtreecommitdiff
path: root/pokeytest/Makefile
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2016-09-13 04:49:13 -0400
committerB. Watson <yalhcru@gmail.com>2016-09-13 04:49:13 -0400
commit15ac1a8086971cb500bd09dd97bf62e111c2be90 (patch)
treef151be86d513450a2b33aaa169e21c0b7339b85e /pokeytest/Makefile
parent9bcb6af0db2a32a4158f7e7c91e91634f562a3da (diff)
downloadjumpmanjr-15ac1a8086971cb500bd09dd97bf62e111c2be90.tar.gz
pokey emulation, plus more labels
Diffstat (limited to 'pokeytest/Makefile')
-rw-r--r--pokeytest/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/pokeytest/Makefile b/pokeytest/Makefile
new file mode 100644
index 0000000..e629344
--- /dev/null
+++ b/pokeytest/Makefile
@@ -0,0 +1,15 @@
+
+all:
+ gcc -O2 -Wall -o playsdl2 playsdl2.c pokey.c `pkg-config sdl2 --cflags --libs`
+
+#gcc -O2 -Wall -o playsnd playsnd.c pokey.c
+
+#test: all
+#./playsnd > 1.raw
+#aplay -r 44100 -c 1 -t raw -f u8 1.raw
+
+test: all
+ ./playsdl2 $(TEST_SFX)
+
+clean:
+ rm -f *.o playsnd playsdl2 *.raw core