ledbar/host/Makefile
2011-04-22 18:33:40 +02: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