ledbar/Makefile
2010-12-03 01:36:55 +01:00

10 lines
175 B
Makefile

CFLAGS=$(shell sdl-config --cflags) -Wall
LDFLAGS=$(shell sdl-config --libs)
all: ledbar
ledbar: ledbar.c
gcc ledbar.c -o ledbar $(CFLAGS) $(LDFLAGS)
clean:
rm -f ledbar