Subversion Repositories Okuu

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 3
Line 1... Line 1...
1
# $Id: Makefile 2 2024-09-09 13:22:05Z nishi $
1
# $Id: Makefile 3 2024-09-10 19:21:48Z 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 ircfw.o
8
OBJS = main.o ircfw.o bot.o util.o news.o
9
 
9
 
10
all: okuu$(EXEC)
10
all: okuu$(EXEC)
11
 
11
 
12
okuu$(EXEC): $(OBJS)
12
okuu$(EXEC): $(OBJS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)