Update keyjam.exe to use SDL2

KeyJam is only used on Windows, so SDL1 support has been dropped.
Build this tool from the v0.7.0 branch if you need an SDL1-compatible
version of KeyJam.
This commit is contained in:
Michael Martin
2020-09-05 15:05:47 -07:00
parent 5f268d85d1
commit 6dff21ef52
2 changed files with 94 additions and 35 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
all: keyjam.c
gcc $(shell sdl-config --cflags) -o keyjam keyjam.c $(shell sdl-config --libs) -lSDL_gfx
gcc $(shell sdl2-config --cflags) -o keyjam keyjam.c $(shell sdl2-config --libs) -lSDL2_gfx
clean:
rm -f keyjam