# $Id$ include $(PWD)/Platform/$(PLATFORM).mk .PHONY: all clean .SUFFIXES: .c .o OBJS = db.o html.o all: web.a web.a: $(OBJS) $(AR) rcs $@ $(OBJS) .c.o: $(CC) $(CFLAGS) -I $(PWD)/Bot -c -o $@ $< clean: rm -f *.a *.o