forked from hackcraft-de/linwarrior
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
163 lines (130 loc) · 4.41 KB
/
Makefile
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# Project: Linwarrior 3D
# Makefile with auto-dependency generation
# Add Include directories here.
INCLUDES = -I source
# Automatic searching for source files.
# Objects to compile are all sources (cpp) and put the .o below build-dir.
OBJECTS=$(addprefix build/, $(subst .cpp,.o, $(wildcard source/*.cpp source/*/*.cpp source/*/*/*.cpp source/*/*/*/*.cpp source/*/*/*/*/*.cpp source/*/*/*/*/*/*.cpp) ) )
# Different Parameters and Programs for different OSes.
ifneq (,$(findstring Win,$(OS)))
DESCRIPTION=Make using native mingw
LIBRARIES= -Wl,-subsystem,console -lmingw32 -lSDLmain -lSDL -lOpenGL32 -lglew32 -lGLU32 -lopenal32 -lalut
TARGET=dist\linwarrior.exe
MKDIR=mkdir -p
CP=copy
RM=cmd /C del /Q
RMREC=cmd /C del /Q /S
CPP=c++
LIMITER=$(dir \file)
CFLAGS+= -static-libgcc
QUOTE='
else
ifeq ($(shell uname -s), Darwin)
DESCRIPTION=Make for white fruit computers
LIBRARIES= -framework Cocoa -framework OpenGL -framework OpenAL -framework Alut -L/opt/local/lib/ -lSDLmain -lSDL -lGLEW -lGLU
TARGET=dist/linwarrior
MKDIR=mkdir -p
RM=rm -f
RMREC=rm -f -r
CP=cp
# NOTE: Change the compiler path and version to match your system, eg.
# CPP=/opt/local/bin/g++-mp-4.5
CPP=g++
LIMITER=/
QUOTE=
else
ifdef MINGWCROSS
DESCRIPTION=Make for wine using cross platform mingw
LIBRARIES= -Wl,-subsystem,console -lmingw32 -lSDLmain -lSDL -lopengl32 -lglew32 -lglu32 -lOpenAL32 -lalut
CPP=i586-mingw32msvc-c++ -I ~/MinGW/include -L ~/MinGW/lib -D__GNUWIN32__ -DHAVE_W32API_H -D__WINDOWS__
TARGET=dist/linwarrior.exe
MKDIR=mkdir -p
RM=rm -f
RMREC=rm -f -r
CP=cp
LIMITER=/
QUOTE=
else
DESCRIPTION=Make for Linux and derivates
LIBRARIES= -lGLEW -lGLU -lGL -lSDL -lopenal -lalut
TARGET=dist/linwarrior
MKDIR=mkdir -p
RM=rm -f
RMREC=rm -f -r
CP=cp
CPP=c++
LIMITER=/
QUOTE=
endif
endif
endif
# Creation of dependency information when compiling.
CFLAGS += -Wp,-M,-MP,-MT,$@,-MF,dep/$(subst /,-,$@).d
# Enable c++0x standard which gives extended initializer lists
#CFLAGS += -std=c++0x
CFLAGS += -std=gnu++0x
# Print warnings when compiling.
CFLAGS += -Wall
# Use the given includepathes.
CFLAGS += $(INCLUDES)
# Optimizations.
CFLAGS += -O1 -funroll-loops
# More Optimizations.
#CFLAGS += -O3 -funroll-loops
# Even More optimizations (architecture depending).
#CFLAGS += -O3 -funroll-loops -msse3 -ftree-vectorizer-verbose=0 -ftree-vectorize
# Fast-Math doesn't work because of NaN usage.
# Flags for profiling, instructions:
# 1. Recompile everything with these flags un-commented.
# 2. Run the binaray to collect data.
# 3. Call gprof with the binary as a parameter to analyse the collected data.
# 4. Disable/Comment these flags again and recompile everything.
#CFLAGS += -pg
#LFLAGS += -pg
# Flags for debug symbols, instructions:
# 1. Recompile everything with these flags un-commented.
# 2. Possibly edit project's run debug configuration.
# 3. Place breakpoints as you wish.
# 4. Hit Debug-Run
# 5. Disable/Comment this flag again and recompile everything to finish.
#CFLAGS += -g
# Default makefile Target.
all: PRINTPLATFORM $(TARGET)
PRINTPLATFORM:
@echo $(DESCRIPTION)
# For executable we need all sources compiled to objects.
$(TARGET): $(OBJECTS)
$(MKDIR) dist
$(CPP) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(LIBRARIES)
# Compile all Source files, creates output directories as necessary.
build/%.o: %.cpp
$(shell $(MKDIR) dep )
$(shell $(MKDIR) build )
$(shell $(MKDIR) $(dir $@) )
$(CPP) $(CFLAGS) -c $< -o $@
# $(shell $(MKDIR) build 2>/dev/null)
# $(shell $(MKDIR) $(dir $@) 2>/dev/null)
# IDE may call makefile with target "build" instead of "all".
build: all
# May call clean before build to delete previous relics.
.PHONY: clean
clean:
$(RMREC) $(QUOTE)dist$(QUOTE)
$(RMREC) $(QUOTE)dep$(QUOTE)
$(RMREC) $(QUOTE)build$(QUOTE)
$(MKDIR) dep
$(MKDIR) build
$(MKDIR) dist
# $(RM) $(QUOTE)dep$(LIMITER)*.o.d$(QUOTE)
# $(RM) $(QUOTE)build$(LIMITER)source$(LIMITER)*.o$(QUOTE)
# Target to compile doxygen helpfiles from code and comments see conf file.
doxygen:
doxygen doxygen.conf
# Target to run extensive code sanity checks using cppcheck.
# Use -U to disable defines and related code paths (eg. -U __APPLE__ or -U _WIN32).
cppcheck:
cppcheck --std=c++11 --relative-paths=source --enable=all -U NAN -U finitef -U __APPLE__ -U _WIN32 -U GLUTTESTDRIVER -I source source
cloc:
cloc source
# Include autogenerated dependency files (silently makedir if not existing).
-include $(shell $(MKDIR) dep 2>/dev/null) $(wildcard dep/*.o.d)