- Timestamp:
- Sep 18, 2024, 7:14:25 PM (2 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Platform/win32.mk
r43 r48 5 5 CC = i686-w64-mingw32-gcc 6 6 AR = i686-w64-mingw32-ar 7 WINDRES = i686-w64-mingw32-windres 7 8 CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -fPIC 8 9 LDFLAGS = … … 10 11 EXEC = .exe 11 12 LIB = .dll 13 PREOBJS = tewi.res -
trunk/Platform/win64.mk
r43 r48 5 5 CC = x86_64-w64-mingw32-gcc 6 6 AR = x86_64-w64-mingw32-ar 7 WINDRES = x86_64-w64-mingw32-windres 7 8 CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -fPIC 8 9 LDFLAGS = … … 10 11 EXEC = .exe 11 12 LIB = .dll 13 PREOBJS = tewi.res -
trunk/Server/Makefile
r44 r48 6 6 .SUFFIXES: .c .o 7 7 8 OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS) 8 OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS) $(PREOBJS) 9 9 10 10 all: tewi$(EXEC) … … 16 16 $(CC) $(CFLAGS) $(EXTCFLAGS) -c -o $@ $< 17 17 18 tewi.res: tewi.rc tewi.ico 19 $(WINDRES) tewi.rc -O coff -o $@ 20 18 21 clean: 19 22 rm -f *.o tewi *.exe
Note:
See TracChangeset
for help on using the changeset viewer.