mirror of
https://github.com/chocolate-doom/joytest.git
synced 2024-11-25 05:30:57 +00:00
7 lines
135 B
Makefile
7 lines
135 B
Makefile
|
|
CFLAGS = $(shell sdl-config --cflags)
|
|
LDFLAGS = $(shell sdl-config --libs)
|
|
|
|
joytest : joytest.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@
|
|
|