Files
Michael Martin 6dff21ef52 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.
2020-09-05 15:52:10 -07:00

6 lines
129 B
Makefile

all: keyjam.c
gcc $(shell sdl2-config --cflags) -o keyjam keyjam.c $(shell sdl2-config --libs) -lSDL2_gfx
clean:
rm -f keyjam