source: Main/trunk/Server/Makefile@ 49

Last change on this file since 49 was 48, checked in by Nishi, on Sep 18, 2024 at 7:14:25 PM

add resources

  • Property svn:keywords set to Id
File size: 459 bytes
Line 
1# $Id: Makefile 48 2024-09-18 10:14:25Z 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 http.o module.o strptime.o $(EXTOBJS) $(PREOBJS)
9
10all: tewi$(EXEC)
11
12tewi$(EXEC): $(OBJS) ../Common/common.a
13 $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a
14
15.c.o:
16 $(CC) $(CFLAGS) $(EXTCFLAGS) -c -o $@ $<
17
18tewi.res: tewi.rc tewi.ico
19 $(WINDRES) tewi.rc -O coff -o $@
20
21clean:
22 rm -f *.o tewi *.exe
Note: See TracBrowser for help on using the repository browser.