Changeset 212 in Main for trunk/Server/Makefile
- Timestamp:
- Oct 3, 2024, 2:44:55 AM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/Makefile
r197 r212 1 1 # $Id$ 2 2 3 OBJ=o 4 STATIC=a 3 5 include $(PWD)/Platform/$(PLATFORM).mk 4 6 5 7 .PHONY: all clean 6 .SUFFIXES: .c . o8 .SUFFIXES: .c .$(OBJ) 7 9 8 OBJS = main. o version.o config.o server.o http.o module.o strptime.o font.o$(EXTOBJS) $(PREOBJS)10 OBJS = main.$(OBJ) version.$(OBJ) config.$(OBJ) server.$(OBJ) http.$(OBJ) module.$(OBJ) strptime.$(OBJ) font.$(OBJ) $(EXTOBJS) $(PREOBJS) 9 11 10 12 all: tewi$(EXEC) $(TARGET) … … 12 14 tewi_strip$(EXEC): tewi$(EXEC) 13 15 14 tewi$(EXEC): $(OBJS) ../Common/common. a15 $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) ../Common/common. a$(LIBS)16 tewi$(EXEC): $(OBJS) ../Common/common.$(STATIC) 17 $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) ../Common/common.$(STATIC) $(LIBS) 16 18 $(SERVADD) 17 19 … … 41 43 package_finalize $@ 42 44 43 .c. o:45 .c.$(OBJ): 44 46 $(CC) $(CFLAGS) $(EXTCFLAGS) -c -o $@ $< 45 47 … … 48 50 49 51 clean: 50 rm -f *.o tewi *.exe *.res *.elf *.sfo *.pbp *.self *.pkg 52 rm -f *.o tewi *.exe *.res *.elf *.sfo *.pbp *.self *.pkg *.obj
Note:
See TracChangeset
for help on using the changeset viewer.