source: Main/trunk/Server/Makefile@ 147

Last change on this file since 147 was 128, checked in by Nishi, on Sep 23, 2024 at 7:19:19 PM

release 1.04

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