Move host software to host/ subdirectory.

This commit is contained in:
Petr Baudis 2011-04-22 18:33:40 +02:00
parent 141028bc90
commit 39428b3e29
3 changed files with 0 additions and 0 deletions

10
host/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