Subversion Repositories IRC-Archiver

Rev

Rev 9 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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