Rev 10 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# $Id: Makefile 11 2024-08-30 05:20:32Z nishi $
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