source: Main/trunk/Server/Makefile@ 43

Last change on this file since 43 was 43, checked in by Nishi, on Sep 18, 2024 at 6:19:03 PM

add NO_SSL

  • Property svn:keywords set to Id
File size: 359 bytes
RevLine 
[2]1# $Id: Makefile 43 2024-09-18 09:19:03Z nishi $
2
3include $(PWD)/Platform/$(PLATFORM).mk
4
5.PHONY: all clean
6.SUFFIXES: .c .o
7
[43]8OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS)
[2]9
10all: tewi$(EXEC)
11
[3]12tewi$(EXEC): $(OBJS) ../Common/common.a
[43]13 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a
[2]14
15.c.o:
16 $(CC) $(CFLAGS) -c -o $@ $<
17
18clean:
19 rm -f *.o tewi *.exe
Note: See TracBrowser for help on using the repository browser.