1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-07-05 01:22:00 +03:00
ben-blinkenlights/swuart/Makefile
2012-12-17 00:45:21 -03:00

20 lines
263 B
Makefile

CC = mipsel-openwrt-linux-gcc
CFLAGS = -g -Wall -I../libubb/include
LDFLAGS = -static
LDLIBS = -L../libubb -lubb
MAIN = swuart
OBJS = swuart.o
.PHONY: all clean spotless
all: $(MAIN)
$(MAIN): $(OBJS)
clean:
rm -f $(OBJS)
spotless: clean
rm -f $(MAIN)