Subversion Repositories Tewi

Rev

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

Rev 16 Rev 17
Line 1... Line 1...
1
# $Id: Makefile 16 2024-09-13 15:09:52Z nishi $
1
# $Id: Makefile 17 2024-09-13 17:41:07Z 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 = version.o main.o config.o server.o ssl.o http.o
8
OBJS = version.o main.o config.o server.o ssl.o http.o module.o
9
 
9
 
10
all: tewi$(EXEC)
10
all: tewi$(EXEC)
11
 
11
 
12
tewi$(EXEC): $(OBJS) ../Common/common.a
12
tewi$(EXEC): $(OBJS) ../Common/common.a
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) -lssl -lcrypto $(LIBS) ../Common/common.a
13
	$(CC) $(LDFLAGS) -o $@ $(OBJS) -lssl -lcrypto $(LIBS) ../Common/common.a