1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2025-04-21 12:27:27 +03:00

ubbctl/: UBB pin status decoder

This commit is contained in:
Werner Almesberger
2013-01-04 05:40:19 -03:00
parent d33da7076c
commit f0c6e87222
2 changed files with 59 additions and 0 deletions

19
ubbctl/Makefile Normal file
View File

@@ -0,0 +1,19 @@
CC = mipsel-openwrt-linux-gcc
CFLAGS = -g -Wall -O9 -I../libubb/include
LDFLAGS = -static
LDLIBS = -L../libubb -lubb
MAIN = ubbctl
OBJS = ubbctl.o
.PHONY: all clean spotless
all: $(MAIN)
$(MAIN): $(OBJS)
clean:
rm -f $(OBJS)
spotless: clean
rm -f $(MAIN)