6dff21ef52
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.
6 lines
129 B
Makefile
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
|