joytest/Makefile

8 lines
135 B
Makefile
Raw Normal View History

CFLAGS = $(shell sdl-config --cflags)
LDFLAGS = $(shell sdl-config --libs)
joytest : joytest.c
2014-05-04 20:16:43 +00:00
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)