forked from anura-engine/anura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.mingw
80 lines (68 loc) · 3.04 KB
/
Makefile.mingw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
# Main Makefile, intended for use on Linux/X11 and compatible platforms
# using GNU Make.
#
# It should guess the paths to the game dependencies on its own, except for
# Boost which is assumed to be installed to the default locations. If you have
# installed Boost to a non-standard location, you will need to override CXXFLAGS
# and LDFLAGS with any applicable -I and -L arguments.
#
# The main options are:
#
# CCACHE The ccache binary that should be used when USE_CCACHE is
# enabled (see below). Defaults to 'ccache'.
# CXX C++ compiler comand line.
# CXXFLAGS Additional C++ compiler options.
# OPTIMIZE If set to 'yes' (default), builds with compiler
# optimizations enabled (-O2). You may alternatively use
# CXXFLAGS to set your own optimization options.
# LDFLAGS Additional linker options.
# USE_CCACHE If set to 'yes' (default), builds using the CCACHE binary
# to run the compiler. If ccache is not installed (i.e.
# found in PATH), this option has no effect.
#
OPTIMIZE=yes
CCACHE?=ccache
USE_CCACHE?=$(shell which $(CCACHE) 2>&1 > /dev/null && echo yes)
ifneq ($(USE_CCACHE),yes)
CCACHE=
endif
ifeq ($(OPTIMIZE),yes)
BASE_CXXFLAGS += -O2
endif
# Initial compiler options, used before CXXFLAGS and CPPFLAGS.
BASE_CXXFLAGS += -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Wignored-qualifiers -Wformat -Wswitch -D_MINGW=1 -D_WIN32_WINNT=0x0501
# Compiler include options, used after CXXFLAGS and CPPFLAGS.
INC := $(shell pkg-config --cflags sdl glu glew SDL_image libpng zlib)
# Linker library options.
LIBS := -lSDLmain \
$(shell pkg-config --libs sdl glu glew SDL_image libpng zlib) -lSDL_ttf -lSDL_mixer
include Makefile.common
%.o : src/%.cpp
$(CCACHE) $(CXX) \
$(BASE_CXXFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(INC) -DIMPLEMENT_SAVE_PNG \
-c $<
$(CXX) $(BASE_CXXFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(INC) -DIMPLEMENT_SAVE_PNG -MM $< > $*.d
@mv -f $*.d $*.d.tmp
@sed -e '1 s|.*:|$*.o:|' < $*.d.tmp > $*.d.tmp2
sed -e "2,$$ s|.*:||" < $*.d.tmp2 > $*.d
@sed -e 's/.*://' -e 's/\\$$//' < $*.d.tmp | fmt -1 | \
sed -e 's/^ *//' -e 's/$$/:/' >> $*.d
@rm -f $*.d.tmp $*.d.tmp2
game: $(objects)
$(CCACHE) $(CXX) \
$(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(INC) \
$(objects) -o game \
$(LIBS) -lboost_regex-mt -lboost_system-mt -lpthread -lws2_32 -lmswsock -fthreadsafe-statics
# pull in dependency info for *existing* .o files
-include $(objects:.o=.d)
server: $(server_objects)
$(CCACHE) $(CXX) \
$(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) \
$(server_objects) -o server \
$(LIBS) -lboost_regex-mt -lboost_system-mt -lboost_thread-mt -lboost_iostreams-mt -lws2_32 -lmswsock
clean:
rm -f *.o *.d game
assets:
./game --utility=compile_levels
./game --utility=compile_objects