1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-06-28 21:33:51 +03:00
ben-blinkenlights/swuart-chat/Makefile
Werner Almesberger 519ebe648c swuart/: convert "hammering the peer" demo into a primitive interactive chat
Also rename directory from swuart/ to swuart-chat/, and application from
"swuart" to "chat".
2012-12-17 22:44:23 -03:00

20 lines
263 B
Makefile

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