ledbar/host/Makefile
Pavol Rusnak 4b37602c43 fix build
2011-11-17 00:12:01 +01:00

10 lines
179 B
Makefile

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