Subversion Repositories IRC-Archiver

Rev

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

Rev 4 Rev 5
Line 1... Line 1...
1
# $Id: Makefile 4 2024-08-30 01:49:08Z nishi $
1
# $Id: Makefile 5 2024-08-30 02:36:44Z 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
7
 
7
 
8
OBJS = main.o util.o bot.o
8
OBJS = main.o util.o bot.o ircfw.o
9
 
9
 
10
all: ircarc$(EXEC)
10
all: ircarc$(EXEC)
11
 
11
 
12
ircarc$(EXEC): $(OBJS)
12
ircarc$(EXEC): $(OBJS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)