source:
Main/trunk/Server/Makefile@
16
Last change on this file since 16 was 16, checked in by , on Sep 14, 2024 at 12:09:52 AM | |
---|---|
|
|
File size: 338 bytes |
Rev | Line | |
---|---|---|
[2] | 1 | # $Id: Makefile 16 2024-09-13 15:09:52Z nishi $ |
2 | ||
3 | include $(PWD)/Platform/$(PLATFORM).mk | |
4 | ||
5 | .PHONY: all clean | |
6 | .SUFFIXES: .c .o | |
7 | ||
[16] | 8 | OBJS = version.o main.o config.o server.o ssl.o http.o |
[2] | 9 | |
10 | all: tewi$(EXEC) | |
11 | ||
[3] | 12 | tewi$(EXEC): $(OBJS) ../Common/common.a |
[14] | 13 | $(CC) $(LDFLAGS) -o $@ $(OBJS) -lssl -lcrypto $(LIBS) ../Common/common.a |
[2] | 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.