mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
10 lines
178 B
Makefile
10 lines
178 B
Makefile
CC=gcc
|
|
LDOPTS=`sdl2-config --cflags --libs` -lSDL2 -lSDL2_mixer -lSDL2_image -lSDL2_ttf
|
|
|
|
test: test.c Makefile
|
|
${CC} test.c -o test ${LDOPTS}
|
|
|
|
clean:
|
|
rm -Rf test snapshot.png
|
|
|