source: Daodan/makefile@ 687

Last change on this file since 687 was 687, checked in by alloc, 12 years ago

Daodan: Fixes to both makefile and binkw32.def to make it work with newer GCC/LD-releases

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1UNAME := $(shell uname -s)
2ifeq ("Linux","$(UNAME)")
3 GCC := i686-w64-mingw32-gcc
4 WINDRES := i686-w64-mingw32-windres
5else
6 GCC := gcc
7 WINDRES := windres
8endif
9
10GCCFLAGS = -O0 -Wall -fomit-frame-pointer -fpack-struct
11LINKFLAGS = -O0 -Wall -fomit-frame-pointer -fpack-struct -s -mdll
12
13#LIBS = -lwinmm -lopengl32 -lgdi32
14LIBS = -lgdi32
15OBJS = src/binkw32.def
16OUT = build/binkw32.dll
17
18SRC = src/Daodan.c src/Daodan_BSL.c src/Daodan_Character.c src/Daodan_Cheater.c src/Daodan_Console.c src/daodan_gl.c src/Daodan_Patch.c src/Daodan_Persistence.c src/Daodan_Utility.c src/Daodan_Win32.c src/Daodan_WindowHack.c src/inifile_reader.c src/Oni_Symbols.c src/_DLLInfo.rc
19DEST = $(patsubst src/%.rc,build/%.o,$(patsubst src/%.c,build/%.o,$(SRC)))
20
21ALL: $(DEST) $(OBJS)
22 echo "Linking $<"
23 $(GCC) $(LINKFLAGS) -o $(OUT) $(DEST) $(OBJS) $(LIBS)
24
25clean:
26 rm $(DEST)
27 rm $(OUT)
28
29build/%.o: src/%.c
30 echo "Compiling $<"
31 $(GCC) $(GCCFLAGS) -c -o $@ $<
32 echo
33
34build/%.o: src/%.rc
35 echo "Assembling resource $<"
36 $(WINDRES) -i $< -o $@
37
Note: See TracBrowser for help on using the repository browser.