mirror of
https://github.com/chocolate-doom/joytest.git
synced 2024-11-10 07:11:45 +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) $< -o $@ $(LDFLAGS)
|
|
|