mirror of
git://projects.qi-hardware.com/ben-blinkenlights.git
synced 2024-11-05 13:31:52 +02:00
519ebe648c
Also rename directory from swuart/ to swuart-chat/, and application from "swuart" to "chat".
20 lines
263 B
Makefile
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)
|