1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-06-28 22:21:06 +03:00
ben-blinkenlights/lpc111x-isp/Makefile
Werner Almesberger eea0484a41 lpc111x-isp/: Ben-based in-system programmer (ISP) for NXP LPC111x chips (WIP)
Uses SWUART. This is just a "first contact" skeleton.
2012-12-28 21:00:28 -03:00

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)