mirror of
git://projects.qi-hardware.com/ben-blinkenlights.git
synced 2024-11-05 08:41:34 +02:00
eea0484a41
Uses SWUART. This is just a "first contact" skeleton.
20 lines
269 B
Makefile
20 lines
269 B
Makefile
CC = mipsel-openwrt-linux-gcc
|
|
CFLAGS = -g -Wall -O9 -I../libubb/include
|
|
LDFLAGS = -static
|
|
LDLIBS = -L../libubb -lubb
|
|
|
|
MAIN = lpc111x
|
|
OBJS = lpc111x.o
|
|
|
|
.PHONY: all clean spotless
|
|
|
|
all: $(MAIN)
|
|
|
|
$(MAIN): $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
|
|
spotless: clean
|
|
rm -f $(MAIN)
|