joytest/Makefile
2014-05-04 20:16:43 +00:00

7 lines
135 B
Makefile

CFLAGS = $(shell sdl-config --cflags)
LDFLAGS = $(shell sdl-config --libs)
joytest : joytest.c
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)