Subversion Repositories IRCServ

Rev

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

Rev 1 Rev 2
Line 1... Line 1...
1
# $Id: Makefile 1 2024-08-25 09:23:35Z nishi $
1
# $Id: Makefile 2 2024-08-25 10:11:51Z 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
8
OBJS = version.o main.o
9
 
9
 
10
all: ircserv$(EXEC)
10
all: ircserv$(EXEC)
11
 
11
 
12
ircserv$(EXEC): $(OBJS)
12
ircserv$(EXEC): $(OBJS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)