Changeset 48 in Main for trunk


Ignore:
Timestamp:
Sep 18, 2024, 7:14:25 PM (2 months ago)
Author:
Nishi
Message:

add resources

Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Platform/win32.mk

    r43 r48  
    55CC = i686-w64-mingw32-gcc
    66AR = i686-w64-mingw32-ar
     7WINDRES = i686-w64-mingw32-windres
    78CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -fPIC
    89LDFLAGS =
     
    1011EXEC = .exe
    1112LIB = .dll
     13PREOBJS = tewi.res
  • trunk/Platform/win64.mk

    r43 r48  
    55CC = x86_64-w64-mingw32-gcc
    66AR = x86_64-w64-mingw32-ar
     7WINDRES = x86_64-w64-mingw32-windres
    78CFLAGS = -g -std=c99 -DPREFIX=\"$(PREFIX)\" -I $(PWD)/Common -fPIC
    89LDFLAGS =
     
    1011EXEC = .exe
    1112LIB = .dll
     13PREOBJS = tewi.res
  • trunk/Server/Makefile

    r44 r48  
    66.SUFFIXES: .c .o
    77
    8 OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS)
     8OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS) $(PREOBJS)
    99
    1010all: tewi$(EXEC)
     
    1616        $(CC) $(CFLAGS) $(EXTCFLAGS) -c -o $@ $<
    1717
     18tewi.res: tewi.rc tewi.ico
     19        $(WINDRES) tewi.rc -O coff -o $@
     20
    1821clean:
    1922        rm -f *.o tewi *.exe
Note: See TracChangeset for help on using the changeset viewer.