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)