Rev 10 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# $Id: Makefile 9 2024-08-30 03:51:01Z nishi $
include $(PWD)/Platform/$(PLATFORM).mk
.PHONY: all clean
.SUFFIXES: .c .o
OBJS = db.o
all: web.a
web.a: $(OBJS)
$(AR) rcs $@ $(OBJS)
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f *.a *.o