source: Main/trunk/Server/Makefile@ 30

Last change on this file since 30 was 17, checked in by Nishi, on Sep 14, 2024 at 2:41:07 AM

module system kinda works

  • Property svn:keywords set to Id
File size: 347 bytes
Line 
1# $Id: Makefile 17 2024-09-13 17:41:07Z nishi $
2
3include $(PWD)/Platform/$(PLATFORM).mk
4
5.PHONY: all clean
6.SUFFIXES: .c .o
7
8OBJS = version.o main.o config.o server.o ssl.o http.o module.o
9
10all: tewi$(EXEC)
11
12tewi$(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
18clean:
19 rm -f *.o tewi *.exe
Note: See TracBrowser for help on using the repository browser.