Subversion Repositories IRC-Archiver

Rev

Rev 9 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 nishi 1
# $Id: Makefile 10 2024-08-30 04:44:58Z nishi $
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
5
.PHONY: all clean
6
.SUFFIXES: .c .o
7
 
8
OBJS = db.o
9
 
10
all: web.a
11
 
12
web.a: $(OBJS)
13
	$(AR) rcs $@ $(OBJS)
14
 
15
.c.o:
10 nishi 16
	$(CC) $(CFLAGS) -I $(PWD)/Bot -c -o $@ $<
9 nishi 17
 
18
clean:
19
	rm -f *.a *.o