Subversion Repositories IRC-Archiver

Rev

Rev 10 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 nishi 1
# $Id: Makefile 11 2024-08-30 05:20:32Z nishi $
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
5
.PHONY: all clean
6
.SUFFIXES: .c .o
7
 
11 nishi 8
OBJS = db.o html.o
9 nishi 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