Subversion Repositories Tewi

Rev

Rev 54 | Rev 75 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
# $Id: Makefile 62 2024-09-18 20:02:26Z nishi $
2
 
3
include $(PWD)/Platform/$(PLATFORM).mk
4
 
5
.PHONY: all clean
6
.SUFFIXES: .c .o
7
 
48 nishi 8
OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS) $(PREOBJS)
2 nishi 9
 
62 nishi 10
all: tewi$(EXEC)
2 nishi 11
 
3 nishi 12
tewi$(EXEC): $(OBJS) ../Common/common.a
44 nishi 13
	$(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a
2 nishi 14
 
15
.c.o:
44 nishi 16
	$(CC) $(CFLAGS) $(EXTCFLAGS) -c -o $@ $<
2 nishi 17
 
48 nishi 18
tewi.res: tewi.rc tewi.ico
19
	$(WINDRES) tewi.rc -O coff -o $@
20
 
2 nishi 21
clean:
22
	rm -f *.o tewi *.exe