source:
Main/trunk/Server/Makefile@
37
Last change on this file since 37 was 32, checked in by , on Sep 16, 2024 at 9:42:19 PM | |
---|---|
|
|
File size: 358 bytes |
Line | |
---|---|
1 | # $Id: Makefile 32 2024-09-16 12:42:19Z nishi $ |
2 | |
3 | include $(PWD)/Platform/$(PLATFORM).mk |
4 | |
5 | .PHONY: all clean |
6 | .SUFFIXES: .c .o |
7 | |
8 | OBJS = version.o main.o config.o server.o ssl.o http.o module.o strptime.o |
9 | |
10 | all: tewi$(EXEC) |
11 | |
12 | tewi$(EXEC): $(OBJS) ../Common/common.a |
13 | $(CC) $(LDFLAGS) -o $@ $(OBJS) -lssl -lcrypto $(LIBS) ../Common/common.a |
14 | |
15 | .c.o: |
16 | $(CC) $(CFLAGS) -c -o $@ $< |
17 | |
18 | clean: |
19 | rm -f *.o tewi *.exe |
Note:
See TracBrowser
for help on using the repository browser.