initial commit

This commit is contained in:
Pavol Rusnak 2010-12-03 01:36:55 +01:00
commit 69772668d4
3 changed files with 140 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
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