forked from cataclysmbnteam/Cataclysm-BN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
1135 lines (1012 loc) · 32.8 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# vim: set expandtab tabstop=4 softtabstop=2 shiftwidth=2:
# Platforms:
# Linux/Cygwin native
# (don't need to do anything)
# Linux 64-bit
# make NATIVE=linux64
# Linux 32-bit
# make NATIVE=linux32
# Linux cross-compile to Win32
# make CROSS=i686-pc-mingw32-
# or make CROSS=i586-mingw32msvc-
# or whichever prefix your crosscompiler uses
# as long as its name contains mingw32
# Linux cross-compile to OSX with osxcross
# make CROSS=x86_64-apple-darwin15-
# NATIVE=osx
# CLANG=1
# OSXCROSS=1
# LIBSDIR=../libs
# FRAMEWORKSDIR=../Frameworks
# Win32 (non-Cygwin)
# Run: make NATIVE=win32
# OS X
# Run: make NATIVE=osx OSX_MIN=10.12
# It is highly recommended to supply OSX_MIN > 10.11
# otherwise optimizations are automatically disabled with -O0
# Build types:
# Debug (no optimizations)
# Default
# ccache (use compilation caches)
# make CCACHE=1
# Release (turn on optimizations)
# make RELEASE=1
# Tiles (uses SDL rather than ncurses)
# make TILES=1
# Sound (requires SDL, so TILES must be enabled)
# make TILES=1 SOUND=1
# Disable gettext, on some platforms the dependencies are hard to wrangle.
# make LOCALIZE=0
# Disable backtrace support, not available on all platforms
# make BACKTRACE=0
# Use libbacktrace. Only has effect if BACKTRACE=1. (currently only for MinGW builds)
# make LIBBACKTRACE=1
# Compile localization files for specified languages
# make localization LANGUAGES="<lang_id_1>[ lang_id_2][ ...]"
# (for example: make LANGUAGES="zh_CN zh_TW" for Chinese)
# make localization LANGUAGES=all
# (for every .po file in lang/po)
# Special note for MinGW: due to a libintl bug (https://savannah.gnu.org/bugs/index.php?58006),
# using English without a `.mo` file would cause significant slow down on MinGW
# targets. In such case you can compile a `.mo` file for English using `make LANGUAGES="en"`.
# `make LANGUAGE="all"` also compiles a `.mo` file for English in addition to other languages.
# Enable sanitizer (address, undefined, etc.)
# make SANITIZE=address
# Change mapsize (reality bubble size)
# make MAPSIZE=<size>
# Adjust names of build artifacts (for example to allow easily toggling between build types).
# make BUILD_PREFIX="release-"
# Generate a build artifact prefix from the other build flags.
# make AUTO_BUILD_PREFIX=1
# Install to system directories.
# make install
# Use user's XDG base directories for save files and configs.
# make USE_XDG_DIR=1
# Use user's home directory for save files.
# make USE_HOME_DIR=1
# Use dynamic linking (requires system libraries).
# make DYNAMIC_LINKING=1
# Use MSYS2 as the build environment on Windows
# make MSYS2=1
# Turn off all optimizations, even debug-friendly optimizations
# make NOOPT=1
# Astyle all source files.
# make astyle
# Check if source files are styled properly.
# make astyle-check
# Style the whitelisted json files (maintain the current level of styling).
# make style-json
# Style all json files using the current rules (don't PR this, it's too many changes at once).
# make style-all-json
# Disable astyle of source files.
# make ASTYLE=0
# Disable format check of whitelisted json files.
# make LINTJSON=0
# Disable building and running tests.
# make RUNTESTS=0
# comment these to toggle them as one sees fit.
# DEBUG is best turned on if you plan to debug in gdb -- please do!
# PROFILE is for use with gprof or a similar program -- don't bother generally.
# RELEASE_FLAGS is flags for release builds.
RELEASE_FLAGS =
WARNINGS = \
-Werror -Wall -Wextra \
-Wformat-signedness \
-Wlogical-op \
-Wmissing-declarations \
-Wmissing-noreturn \
-Wnon-virtual-dtor \
-Wold-style-cast \
-Woverloaded-virtual \
-Wpedantic \
-Wsuggest-override \
-Wunused-macros \
-Wzero-as-null-pointer-constant \
-Wno-unknown-warning-option
# Uncomment below to disable warnings
#WARNINGS = -w
DEBUGSYMS = -g
#PROFILE = -pg
#OTHERS = -O3
#DEFINES = -DNDEBUG
# Tells ccache to keep comments, as they can be meaningful to the compiler (as to suppress warnings).
export CCACHE_COMMENTS=1
# Disable debug. Comment this out to get logging.
#DEFINES = -DENABLE_LOGGING
# Limit debug to level. Comment out all for all levels.
#DEFINES += -DDEBUG_INFO
#DEFINES += -DDEBUG_WARNING
#DEFINES += -DDEBUG_ERROR
#DEFINES += -DDEBUG_PEDANTIC_INFO
# Limit debug to section. Comment out all for all levels.
#DEFINES += -DDEBUG_ENABLE_MAIN
#DEFINES += -DDEBUG_ENABLE_MAP
#DEFINES += -DDEBUG_ENABLE_MAP_GEN
#DEFINES += -DDEBUG_ENABLE_GAME
# Explicitly let 'char' to be 'signed char' to fix #18776
OTHERS += -fsigned-char
ifndef VERSION
VERSION = the-fork
endif
TARGET_NAME = cataclysm
TILES_TARGET_NAME = $(TARGET_NAME)-tiles
TARGET = $(BUILD_PREFIX)$(TARGET_NAME)
TILESTARGET = $(BUILD_PREFIX)$(TILES_TARGET_NAME)
ifeq ($(TILES), 1)
APPTARGET = $(TILESTARGET)
else
APPTARGET = $(TARGET)
endif
W32TILESTARGET = $(BUILD_PREFIX)$(TILES_TARGET_NAME).exe
W32TARGET = $(BUILD_PREFIX)$(TARGET_NAME).exe
CHKJSON_BIN = $(BUILD_PREFIX)chkjson
BINDIST_DIR = $(BUILD_PREFIX)bindist
BUILD_DIR = $(CURDIR)
SRC_DIR = src
LOCALIZE = 1
ASTYLE_BINARY = astyle
# Enable astyle by default
ifndef ASTYLE
ASTYLE = 1
endif
# Enable json format check by default
ifndef LINTJSON
LINTJSON = 1
endif
# Enable running tests by default
ifndef RUNTESTS
RUNTESTS = 1
endif
# Auto-detect MSYS2
ifdef MSYSTEM
MSYS2 = 1
endif
# Determine JSON formatter binary name
JSON_FORMATTER_BIN=tools/format/json_formatter.cgi
ifeq ($(MSYS2), 1)
JSON_FORMATTER_BIN=tools/format/json_formatter.exe
endif
ifneq (,$(findstring mingw32,$(CROSS)))
JSON_FORMATTER_BIN=tools/format/json_formatter.exe
endif
# Enable backtrace by default
ifndef BACKTRACE
# ...except not on native Windows builds, because the relevant headers are
# probably not available
ifneq ($(MSYS2), 1)
BACKTRACE = 1
endif
endif
ifeq ($(BACKTRACE), 1)
# Also enable libbacktrace on cross-compilation to Windows
ifndef LIBBACKTRACE
ifneq (,$(findstring mingw32,$(CROSS)))
LIBBACKTRACE = 1
endif
endif
endif
ifeq ($(RUNTESTS), 1)
TESTS = tests
endif
# tiles object directories are because gcc gets confused
# Appears that the default value of $LD is unsuitable on most systems
# when preprocessor defines change, but the source doesn't
ODIR = $(BUILD_PREFIX)obj
ODIRTILES = $(BUILD_PREFIX)obj/tiles
W32ODIR = $(BUILD_PREFIX)objwin
W32ODIRTILES = $(W32ODIR)/tiles
ifdef AUTO_BUILD_PREFIX
BUILD_PREFIX = $(if $(RELEASE),release-)$(if $(DEBUG_SYMBOLS),symbol-)$(if $(TILES),tiles-)$(if $(SOUND),sound-)$(if $(LOCALIZE),local-)$(if $(BACKTRACE),back-$(if $(LIBBACKTRACE),libbacktrace-))$(if $(SANITIZE),sanitize-)$(if $(MAPSIZE),map-$(MAPSIZE)-)$(if $(USE_XDG_DIR),xdg-)$(if $(USE_HOME_DIR),home-)$(if $(DYNAMIC_LINKING),dynamic-)$(if $(MSYS2),msys2-)
export BUILD_PREFIX
endif
OS = $(shell uname -s)
# if $(OS) contains 'BSD'
ifneq ($(findstring BSD,$(OS)),)
BSD = 1
endif
# This sets CXX and so must be up here
ifdef CLANG
# Allow setting specific CLANG version
ifeq ($(CLANG), 1)
CLANGCMD = clang++
else
CLANGCMD = $(CLANG)
endif
ifeq ($(NATIVE), osx)
USE_LIBCXX = 1
endif
ifdef USE_LIBCXX
OTHERS += -stdlib=libc++
LDFLAGS += -stdlib=libc++
endif
ifeq ($(CCACHE), 1)
CXX = CCACHE_CPP2=1 ccache $(CROSS)$(CLANGCMD)
LD = CCACHE_CPP2=1 ccache $(CROSS)$(CLANGCMD)
else
CXX = $(CROSS)$(CLANGCMD)
LD = $(CROSS)$(CLANGCMD)
endif
else
# Compiler version & target machine - used later for MXE ICE workaround
ifdef CROSS
CXXVERSION := $(shell $(CROSS)$(CXX) --version | grep -i gcc | sed 's/^.* //g')
CXXMACHINE := $(shell $(CROSS)$(CXX) -dumpmachine)
endif
# Expand at reference time to avoid recursive reference
OS_COMPILER := $(CXX)
# Appears that the default value of $LD is unsuitable on most systems
OS_LINKER := $(CXX)
ifeq ($(CCACHE), 1)
CXX = ccache $(CROSS)$(OS_COMPILER)
LD = ccache $(CROSS)$(OS_LINKER)
else
CXX = $(CROSS)$(OS_COMPILER)
LD = $(CROSS)$(OS_LINKER)
endif
endif
STRIP = $(CROSS)strip
RC = $(CROSS)windres
AR = $(CROSS)ar
# We don't need scientific precision for our math functions, this lets them run much faster.
CXXFLAGS += -ffast-math
LDFLAGS += $(PROFILE)
ifneq ($(SANITIZE),)
SANITIZE_FLAGS := -fsanitize=$(SANITIZE) -fno-sanitize-recover=all
CXXFLAGS += $(SANITIZE_FLAGS)
LDFLAGS += $(SANITIZE_FLAGS)
endif
# enable optimizations. slow to build
ifeq ($(RELEASE), 1)
ifeq ($(NATIVE), osx)
ifdef OSXCROSS
OPTLEVEL = -O0
else ifeq ($(shell expr $(OSX_MIN) \<= 10.11), 1)
OPTLEVEL = -O0
else
ifeq ($(shell $(CXX) -E -Os - < /dev/null > /dev/null 2>&1 && echo fos),fos)
OPTLEVEL = -Os
else
OPTLEVEL = -O3
endif
endif
else
# MXE ICE Workaround
# known bad on 4.9.3 and 4.9.4, if it gets fixed this could include a version test too
ifeq ($(CXXMACHINE), x86_64-w64-mingw32.static)
OPTLEVEL = -O3
else
OPTLEVEL = -Os
endif
endif
ifeq ($(LTO), 1)
ifdef CLANG
# LLVM's LTO will complain if the optimization level isn't between O0 and
# O3 (inclusive)
OPTLEVEL = -O3
endif
endif
CXXFLAGS += $(OPTLEVEL)
ifeq ($(LTO), 1)
ifeq ($(NATIVE), osx)
ifdef CLANG
LTOFLAGS += -flto=full
endif
else
LDFLAGS += -fuse-ld=gold # This breaks in OS X because gold can only produce ELF binaries, not Mach
endif
ifdef CLANG
LTOFLAGS += -flto
else
LTOFLAGS += -flto=jobserver -flto-odr-type-merging
endif
endif
CXXFLAGS += $(LTOFLAGS)
# OTHERS += -mmmx -m3dnow -msse -msse2 -msse3 -mfpmath=sse -mtune=native
# OTHERS += -march=native # Uncomment this to build an optimized binary for your machine only
# Strip symbols, generates smaller executable.
OTHERS += $(RELEASE_FLAGS)
DEBUG =
ifndef DEBUG_SYMBOLS
DEBUGSYMS =
endif
DEFINES += -DRELEASE
# Check for astyle or JSON regressions on release builds.
ifeq ($(ASTYLE), 1)
CHECKS += astyle-check
endif
ifeq ($(LINTJSON), 1)
CHECKS += style-json
endif
endif
ifndef RELEASE
ifeq ($(NOOPT), 1)
# While gcc claims to include all information required for
# debugging at -Og, at least with gcc 8.3, control flow
# doesn't move line-by-line at -Og. Provide a command-line
# way to turn off optimization (make NOOPT=1) entirely.
OPTLEVEL = -O0
else
ifeq ($(shell $(CXX) -E -Og - < /dev/null > /dev/null 2>&1 && echo fog),fog)
OPTLEVEL = -Og
else
OPTLEVEL = -O0
endif
endif
CXXFLAGS += $(OPTLEVEL)
endif
ifeq ($(shell sh -c 'uname -o 2>/dev/null || echo not'),Cygwin)
OTHERS += -std=gnu++14
else
OTHERS += -std=c++14
endif
ifeq ($(CYGWIN),1)
WARNINGS += -Wimplicit-fallthrough=0
endif
CXXFLAGS += $(WARNINGS) $(DEBUG) $(DEBUGSYMS) $(PROFILE) $(OTHERS) -MMD -MP
TOOL_CXXFLAGS = -DCATA_IN_TOOL
BINDIST_EXTRAS += README.md data doc LICENSE.txt LICENSE-OFL-Terminus-Font.txt $(JSON_FORMATTER_BIN)
BINDIST = $(BUILD_PREFIX)cataclysmbn-$(VERSION).tar.gz
W32BINDIST = $(BUILD_PREFIX)cataclysmbn-$(VERSION).zip
BINDIST_CMD = tar --transform=s@^$(BINDIST_DIR)@cataclysmbn-$(VERSION)@ -czvf $(BINDIST) $(BINDIST_DIR)
W32BINDIST_CMD = cd $(BINDIST_DIR) && zip -r ../$(W32BINDIST) * && cd $(BUILD_DIR)
# Check if called without a special build target
ifeq ($(NATIVE),)
ifeq ($(CROSS),)
ifeq ($(shell sh -c 'uname -o 2>/dev/null || echo not'),Cygwin)
DEFINES += -DCATA_NO_CPP11_STRING_CONVERSIONS
TARGETSYSTEM=CYGWIN
else
TARGETSYSTEM=LINUX
endif
endif
endif
# Linux 64-bit
ifeq ($(NATIVE), linux64)
CXXFLAGS += -m64
LDFLAGS += -m64
TARGETSYSTEM=LINUX
ifdef GOLD
CXXFLAGS += -fuse-ld=gold
LDFLAGS += -fuse-ld=gold
endif
else
# Linux 32-bit
ifeq ($(NATIVE), linux32)
CXXFLAGS += -m32
LDFLAGS += -m32
TARGETSYSTEM=LINUX
ifdef GOLD
CXXFLAGS += -fuse-ld=gold
LDFLAGS += -fuse-ld=gold
endif
endif
endif
# OSX
ifeq ($(NATIVE), osx)
ifdef CLANG
OSX_MIN = 10.7
else
OSX_MIN = 10.5
endif
DEFINES += -DMACOSX
CXXFLAGS += -mmacosx-version-min=$(OSX_MIN)
LDFLAGS += -mmacosx-version-min=$(OSX_MIN) -framework CoreFoundation
ifdef FRAMEWORK
ifeq ($(FRAMEWORKSDIR),)
FRAMEWORKSDIR := $(strip $(if $(shell [ -d $(HOME)/Library/Frameworks ] && echo 1), \
$(if $(shell find $(HOME)/Library/Frameworks -name 'SDL2.*'), \
$(HOME)/Library/Frameworks,),))
endif
ifeq ($(FRAMEWORKSDIR),)
FRAMEWORKSDIR := $(strip $(if $(shell find /Library/Frameworks -name 'SDL2.*'), \
/Library/Frameworks,))
endif
ifeq ($(FRAMEWORKSDIR),)
$(error "SDL2 framework not found")
endif
endif
ifeq ($(LOCALIZE), 1)
LDFLAGS += -lintl
ifdef OSXCROSS
LDFLAGS += -L$(LIBSDIR)/gettext/lib
CXXFLAGS += -I$(LIBSDIR)/gettext/include
endif
ifeq ($(BREWGETTEXT), 1)
# recent versions of brew will not allow you to link
LDFLAGS += -L/usr/local/opt/gettext/lib
CXXFLAGS += -I/usr/local/opt/gettext/include
ifneq ($(TILES), 1)
# Same for curses
LDFLAGS += -L/usr/local/opt/ncurses/lib
CPPFLAGS += -I/usr/local/opt/ncurses/include
endif
endif
ifeq ($(MACPORTS), 1)
ifneq ($(TILES), 1)
CXXFLAGS += -I$(shell ncursesw6-config --includedir)
LDFLAGS += -L$(shell ncursesw6-config --libdir)
endif
endif
endif
TARGETSYSTEM=LINUX
ifneq ($(OS), Linux)
BINDIST_CMD = tar -s"@^$(BINDIST_DIR)@cataclysmbn-$(VERSION)@" -czvf $(BINDIST) $(BINDIST_DIR)
endif
endif
# Win32 (MinGW32 or MinGW-w64(32bit)?)
ifeq ($(NATIVE), win32)
# Any reason not to use -m32 on MinGW32?
TARGETSYSTEM=WINDOWS
else
# Win64 (MinGW-w64?)
ifeq ($(NATIVE), win64)
CXXFLAGS += -m64
LDFLAGS += -m64
TARGETSYSTEM=WINDOWS
endif
endif
# MSYS2
ifeq ($(MSYS2), 1)
TARGETSYSTEM=WINDOWS
endif
# Cygwin
ifeq ($(NATIVE), cygwin)
TARGETSYSTEM=CYGWIN
endif
# MXE cross-compile to win32
ifneq (,$(findstring mingw32,$(CROSS)))
DEFINES += -DCROSS_LINUX
TARGETSYSTEM=WINDOWS
endif
ifneq ($(TARGETSYSTEM),WINDOWS)
WARNINGS += -Wredundant-decls
endif
# Global settings for Windows targets
ifeq ($(TARGETSYSTEM),WINDOWS)
CHKJSON_BIN = chkjson.exe
TARGET = $(W32TARGET)
BINDIST = $(W32BINDIST)
BINDIST_CMD = $(W32BINDIST_CMD)
ODIR = $(W32ODIR)
ifeq ($(DYNAMIC_LINKING), 1)
# Windows isn't sold with programming support, these are static to remove MinGW dependency.
LDFLAGS += -static-libgcc -static-libstdc++
else
LDFLAGS += -static
endif
ifeq ($(LOCALIZE), 1)
LDFLAGS += -lintl -liconv
endif
W32FLAGS += -Wl,-stack,12000000,-subsystem,windows
RFLAGS = -J rc -O coff
ifeq ($(NATIVE), win64)
RFLAGS += -F pe-x86-64
endif
endif
ifdef MAPSIZE
CXXFLAGS += -DMAPSIZE=$(MAPSIZE)
endif
ifeq ($(shell git rev-parse --is-inside-work-tree),true)
# We have a git repository, use git version
DEFINES += -DGIT_VERSION
endif
PKG_CONFIG = $(CROSS)pkg-config
ifeq ($(SOUND), 1)
ifneq ($(TILES),1)
$(error "SOUND=1 only works with TILES=1")
endif
ifeq ($(NATIVE),osx)
ifdef FRAMEWORK
CXXFLAGS += -I$(FRAMEWORKSDIR)/SDL2_mixer.framework/Headers
LDFLAGS += -F$(FRAMEWORKSDIR)/SDL2_mixer.framework/Frameworks \
-framework SDL2_mixer -framework Vorbis -framework Ogg
else # libsdl build
ifeq ($(MACPORTS), 1)
LDFLAGS += -lSDL2_mixer -lvorbisfile -lvorbis -logg
else # homebrew
CXXFLAGS += $(shell $(PKG_CONFIG) --cflags SDL2_mixer)
LDFLAGS += $(shell $(PKG_CONFIG) --libs SDL2_mixer)
LDFLAGS += -lvorbisfile -lvorbis -logg
endif
endif
else # not osx
CXXFLAGS += $(shell $(PKG_CONFIG) --cflags SDL2_mixer)
LDFLAGS += $(shell $(PKG_CONFIG) --libs SDL2_mixer)
LDFLAGS += -lpthread
endif
ifeq ($(MSYS2),1)
LDFLAGS += -lmpg123 -lshlwapi -lvorbisfile -lvorbis -logg -lflac
endif
CXXFLAGS += -DSDL_SOUND
endif
ifeq ($(SDL), 1)
TILES = 1
endif
ifeq ($(TILES), 1)
SDL = 1
BINDIST_EXTRAS += gfx
ifeq ($(NATIVE),osx)
ifdef FRAMEWORK
OSX_INC = -F$(FRAMEWORKSDIR) \
-I$(FRAMEWORKSDIR)/SDL2.framework/Headers \
-I$(FRAMEWORKSDIR)/SDL2_image.framework/Headers \
-I$(FRAMEWORKSDIR)/SDL2_ttf.framework/Headers
ifdef SOUND
OSX_INC += -I$(FRAMEWORKSDIR)/SDL2_mixer.framework/Headers
endif
LDFLAGS += -F$(FRAMEWORKSDIR) \
-framework SDL2 -framework SDL2_image -framework SDL2_ttf -framework Cocoa
ifdef SOUND
LDFLAGS += -framework SDL2_mixer
endif
CXXFLAGS += $(OSX_INC)
else # libsdl build
DEFINES += -DOSX_SDL2_LIBS
# handle #include "SDL2/SDL.h" and "SDL.h"
CXXFLAGS += $(shell sdl2-config --cflags) \
-I$(shell dirname $(shell sdl2-config --cflags | sed 's/-I\(.[^ ]*\) .*/\1/'))
LDFLAGS += -framework Cocoa $(shell sdl2-config --libs) -lSDL2_ttf
LDFLAGS += -lSDL2_image
ifdef SOUND
LDFLAGS += -lSDL2_mixer
endif
endif
else # not osx
CXXFLAGS += $(shell $(PKG_CONFIG) sdl2 --cflags)
CXXFLAGS += $(shell $(PKG_CONFIG) SDL2_image --cflags)
CXXFLAGS += $(shell $(PKG_CONFIG) SDL2_ttf --cflags)
ifeq ($(STATIC), 1)
LDFLAGS += $(shell $(PKG_CONFIG) sdl2 --static --libs)
else
LDFLAGS += $(shell $(PKG_CONFIG) sdl2 --libs)
endif
LDFLAGS += -lSDL2_ttf -lSDL2_image
# We don't use SDL_main -- we have proper main()/WinMain()
CXXFLAGS := $(filter-out -Dmain=SDL_main,$(CXXFLAGS))
LDFLAGS := $(filter-out -lSDL2main,$(LDFLAGS))
endif
DEFINES += -DTILES
ifeq ($(TARGETSYSTEM),WINDOWS)
ifndef DYNAMIC_LINKING
# These differ depending on what SDL2 is configured to use.
ifneq (,$(findstring mingw32,$(CROSS)))
# We use pkg-config to find out which libs are needed with MXE
LDFLAGS += $(shell $(PKG_CONFIG) SDL2_image --libs)
LDFLAGS += $(shell $(PKG_CONFIG) SDL2_ttf --libs)
else
ifeq ($(MSYS2),1)
LDFLAGS += -Wl,--start-group -lharfbuzz -lfreetype -Wl,--end-group -lgraphite2 -lpng -lz -ltiff -lbz2 -lglib-2.0 -llzma -lws2_32 -lintl -liconv -lwebp -ljpeg -luuid
else
LDFLAGS += -lfreetype -lpng -lz -ljpeg -lbz2
endif
endif
else
# Currently none needed by the game itself (only used by SDL2 layer).
# Placeholder for future use (savegame compression, etc).
LDFLAGS +=
endif
TARGET = $(W32TILESTARGET)
ODIR = $(W32ODIRTILES)
else
TARGET = $(TILESTARGET)
ODIR = $(ODIRTILES)
endif
else
ifeq ($(LOCALIZE),1)
NCURSES_PREFIX = ncursesw
else
NCURSES_PREFIX = ncurses
endif
ifdef OSXCROSS
NCURSES_PREFIX = ncurses
endif
# ONLY when not cross-compiling, check for pkg-config or ncurses5-config
# When doing a cross-compile, we can't rely on the host machine's -configs
ifeq ($(CROSS),)
ifeq ($(OSXCROSS),)
ifneq ($(shell pkg-config --libs $(NCURSES_PREFIX) 2>/dev/null),)
HAVE_PKGCONFIG = 1
endif
ifneq ($(shell which $(NCURSES_PREFIX)5-config 2>/dev/null),)
HAVE_NCURSES5CONFIG = 1
endif
endif
endif
# Link to ncurses if we're using a non-tiles, Linux build
ifeq ($(HAVE_PKGCONFIG),1)
CXXFLAGS += $(shell $(PKG_CONFIG) --cflags $(NCURSES_PREFIX))
LDFLAGS += $(shell $(PKG_CONFIG) --libs $(NCURSES_PREFIX))
else
ifeq ($(HAVE_NCURSES5CONFIG),1)
CXXFLAGS += $(shell $(NCURSES_PREFIX)5-config --cflags)
LDFLAGS += $(shell $(NCURSES_PREFIX)5-config --libs)
else
ifneq ($(TARGETSYSTEM),WINDOWS)
LDFLAGS += -l$(NCURSES_PREFIX)
endif
ifdef OSXCROSS
LDFLAGS += -L$(LIBSDIR)/$(NCURSES_PREFIX)/lib
CXXFLAGS += -I$(LIBSDIR)/$(NCURSES_PREFIX)/include
endif # OSXCROSS
endif # HAVE_NCURSES5CONFIG
endif # HAVE_PKGCONFIG
endif # TILES
ifeq ($(TARGETSYSTEM),CYGWIN)
ifeq ($(LOCALIZE),1)
# Work around Cygwin not including gettext support in glibc
LDFLAGS += -lintl -liconv
endif
endif
ifeq ($(BSD), 1)
# BSDs have backtrace() and friends in a separate library
ifeq ($(BACKTRACE), 1)
LDFLAGS += -lexecinfo
# ...which requires the frame pointer
CXXFLAGS += -fno-omit-frame-pointer
endif
# And similarly, their libcs don't have gettext built in
ifeq ($(LOCALIZE),1)
LDFLAGS += -lintl -liconv
endif
endif
# Global settings for Windows targets (at end)
ifeq ($(TARGETSYSTEM),WINDOWS)
LDFLAGS += -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lversion
ifeq ($(BACKTRACE),1)
LDFLAGS += -ldbghelp
ifeq ($(LIBBACKTRACE),1)
LDFLAGS += -lbacktrace
endif
endif
endif
ifeq ($(BACKTRACE),1)
DEFINES += -DBACKTRACE
ifeq ($(LIBBACKTRACE),1)
DEFINES += -DLIBBACKTRACE
endif
endif
ifeq ($(LOCALIZE),1)
DEFINES += -DLOCALIZE
endif
ifeq ($(TARGETSYSTEM),LINUX)
BINDIST_EXTRAS += cataclysm-launcher
ifeq ($(BACKTRACE),1)
# -rdynamic needed for symbols in backtraces
LDFLAGS += -rdynamic
endif
endif
ifeq ($(TARGETSYSTEM),CYGWIN)
BINDIST_EXTRAS += cataclysm-launcher
DEFINES += -D_GLIBCXX_USE_C99_MATH_TR1
endif
ifeq ($(MSYS2),1)
DEFINES += -D_GLIBCXX_USE_C99_MATH_TR1
CXXFLAGS += -DMSYS2
endif
# Enumerations of all the source files and headers.
SOURCES := $(wildcard $(SRC_DIR)/*.cpp)
HEADERS := $(wildcard $(SRC_DIR)/*.h)
TESTSRC := $(wildcard tests/*.cpp)
TESTHDR := $(wildcard tests/*.h)
JSON_FORMATTER_SOURCES := tools/format/format.cpp src/json.cpp
CHKJSON_SOURCES := src/chkjson/chkjson.cpp src/json.cpp
CLANG_TIDY_PLUGIN_SOURCES := \
$(wildcard tools/clang-tidy-plugin/*.cpp tools/clang-tidy-plugin/*/*.cpp)
TOOLHDR := $(wildcard tools/*/*.h)
# Using sort here because it has the side-effect of deduplicating the list
ASTYLE_SOURCES := $(sort \
$(SOURCES) \
$(HEADERS) \
$(TESTSRC) \
$(TESTHDR) \
$(JSON_FORMATTER_SOURCES) \
$(CHKJSON_SOURCES) \
$(CLANG_TIDY_PLUGIN_SOURCES) \
$(TOOLHDR))
_OBJS = $(SOURCES:$(SRC_DIR)/%.cpp=%.o)
ifeq ($(TARGETSYSTEM),WINDOWS)
RSRC = $(wildcard $(SRC_DIR)/*.rc)
_OBJS += $(RSRC:$(SRC_DIR)/%.rc=%.o)
endif
OBJS = $(sort $(patsubst %,$(ODIR)/%,$(_OBJS)))
ifdef LANGUAGES
L10N = localization
endif
ifeq ($(TARGETSYSTEM), LINUX)
ifneq ($(PREFIX),)
DEFINES += -DPREFIX="$(PREFIX)" -DDATA_DIR_PREFIX
endif
endif
ifeq ($(TARGETSYSTEM), CYGWIN)
ifneq ($(PREFIX),)
DEFINES += -DPREFIX="$(PREFIX)" -DDATA_DIR_PREFIX
endif
endif
ifeq ($(USE_HOME_DIR),1)
ifeq ($(USE_XDG_DIR),1)
$(error "USE_HOME_DIR=1 does not work with USE_XDG_DIR=1")
endif
DEFINES += -DUSE_HOME_DIR
endif
ifeq ($(USE_XDG_DIR),1)
ifeq ($(USE_HOME_DIR),1)
$(error "USE_HOME_DIR=1 does not work with USE_XDG_DIR=1")
endif
DEFINES += -DUSE_XDG_DIR
endif
ifeq ($(LTO), 1)
# Depending on the compiler version, LTO usually requires all the
# optimization flags to be specified on the link line, and requires them to
# match the original invocations.
LDFLAGS += $(CXXFLAGS)
# If GCC or CLANG, use a wrapper for AR (if it exists) else test fails to build
ifndef CLANG
GCCAR := $(shell command -v gcc-ar 2> /dev/null)
ifdef GCCAR
ifneq (,$(findstring gcc version,$(shell $(CXX) -v </dev/null 2>&1)))
AR = gcc-ar
endif
endif
else
LLVMAR := $(shell command -v llvm-ar 2> /dev/null)
ifdef LLVMAR
ifneq (,$(findstring clang version,$(shell $(CXX) -v </dev/null 2>&1)))
AR = llvm-ar
endif
endif
endif
endif
all: version $(CHECKS) $(TARGET) $(L10N) $(TESTS) validate-pr
@
$(TARGET): $(OBJS)
+$(LD) $(W32FLAGS) -o $(TARGET) $(OBJS) $(LDFLAGS)
ifeq ($(RELEASE), 1)
ifndef DEBUG_SYMBOLS
ifneq ($(BACKTRACE),1)
$(STRIP) $(TARGET)
endif
endif
endif
$(BUILD_PREFIX)$(TARGET_NAME).a: $(OBJS)
$(AR) rcs $(BUILD_PREFIX)$(TARGET_NAME).a $(filter-out $(ODIR)/main.o $(ODIR)/messages.o,$(OBJS))
.PHONY: version
version:
@( VERSION_STRING=$(VERSION) ; \
[ -e ".git" ] && GITVERSION=$$( git describe --tags --always --dirty --match "[0-9A-Z]*.[0-9A-Z]*" ) && VERSION_STRING=$$GITVERSION ; \
[ -e "$(SRC_DIR)/version.h" ] && OLDVERSION=$$(grep VERSION $(SRC_DIR)/version.h|cut -d '"' -f2) ; \
if [ "x$$VERSION_STRING" != "x$$OLDVERSION" ]; then printf '// NOLINT(cata-header-guard)\n#define VERSION "%s"\n' "$$VERSION_STRING" | tee $(SRC_DIR)/version.h ; fi \
)
# Unconditionally create the object dir on every invocation.
$(shell mkdir -p $(ODIR))
$(ODIR)/%.o: $(SRC_DIR)/%.cpp
$(CXX) $(CPPFLAGS) $(DEFINES) $(CXXFLAGS) -c $< -o $@
$(ODIR)/%.o: $(SRC_DIR)/%.rc
$(RC) $(RFLAGS) $< -o $@
src/version.h: version
src/version.cpp: src/version.h
localization:
lang/compile_mo.sh $(LANGUAGES)
$(CHKJSON_BIN): $(CHKJSON_SOURCES)
$(CXX) $(CXXFLAGS) $(TOOL_CXXFLAGS) -Isrc/chkjson -Isrc $(CHKJSON_SOURCES) -o $(CHKJSON_BIN)
json-check: $(CHKJSON_BIN)
./$(CHKJSON_BIN)
clean: clean-tests
rm -rf *$(TARGET_NAME) *$(TILES_TARGET_NAME)
rm -rf *$(TILES_TARGET_NAME).exe *$(TARGET_NAME).exe *$(TARGET_NAME).a
rm -rf *obj *objwin
rm -rf *$(BINDIST_DIR) *cataclysmbn-*.tar.gz *cataclysmbn-*.zip
rm -f $(SRC_DIR)/version.h
rm -f $(CHKJSON_BIN)
distclean:
rm -rf *$(BINDIST_DIR)
rm -rf save
rm -rf lang/mo
rm -f data/options.txt
rm -f data/keymap.txt
rm -f data/auto_pickup.txt
rm -f data/fontlist.txt
bindist: $(BINDIST)
ifeq ($(TARGETSYSTEM), LINUX)
DATA_PREFIX=$(DESTDIR)$(PREFIX)/share/cataclysm-dda/
BIN_PREFIX=$(DESTDIR)$(PREFIX)/bin
LOCALE_DIR=$(DESTDIR)$(PREFIX)/share/locale
install: version $(TARGET)
mkdir -p $(DATA_PREFIX)
mkdir -p $(BIN_PREFIX)
install --mode=755 $(TARGET) $(BIN_PREFIX)
cp -R --no-preserve=ownership data/core $(DATA_PREFIX)
cp -R --no-preserve=ownership data/font $(DATA_PREFIX)
cp -R --no-preserve=ownership data/json $(DATA_PREFIX)
cp -R --no-preserve=ownership data/mods $(DATA_PREFIX)
cp -R --no-preserve=ownership data/names $(DATA_PREFIX)
cp -R --no-preserve=ownership data/raw $(DATA_PREFIX)
cp -R --no-preserve=ownership data/motd $(DATA_PREFIX)
cp -R --no-preserve=ownership data/credits $(DATA_PREFIX)
cp -R --no-preserve=ownership data/title $(DATA_PREFIX)
cp -R --no-preserve=ownership data/help $(DATA_PREFIX)
ifeq ($(TILES), 1)
cp -R --no-preserve=ownership gfx $(DATA_PREFIX)
endif
ifeq ($(SOUND), 1)
cp -R --no-preserve=ownership data/sound $(DATA_PREFIX)
endif
install --mode=644 data/changelog.txt data/cataicon.ico \
LICENSE.txt LICENSE-OFL-Terminus-Font.txt -t $(DATA_PREFIX)
mkdir -p $(LOCALE_DIR)
ifdef LANGUAGES
LOCALE_DIR=$(LOCALE_DIR) lang/compile_mo.sh $(LANGUAGES)
endif
endif
ifeq ($(TARGETSYSTEM), CYGWIN)
DATA_PREFIX=$(DESTDIR)$(PREFIX)/share/cataclysm-dda/
BIN_PREFIX=$(DESTDIR)$(PREFIX)/bin
LOCALE_DIR=$(DESTDIR)$(PREFIX)/share/locale
install: version $(TARGET)
mkdir -p $(DATA_PREFIX)
mkdir -p $(BIN_PREFIX)
install --mode=755 $(TARGET) $(BIN_PREFIX)
cp -R --no-preserve=ownership data/core $(DATA_PREFIX)
cp -R --no-preserve=ownership data/font $(DATA_PREFIX)
cp -R --no-preserve=ownership data/json $(DATA_PREFIX)
cp -R --no-preserve=ownership data/mods $(DATA_PREFIX)
cp -R --no-preserve=ownership data/names $(DATA_PREFIX)
cp -R --no-preserve=ownership data/raw $(DATA_PREFIX)
cp -R --no-preserve=ownership data/motd $(DATA_PREFIX)
cp -R --no-preserve=ownership data/credits $(DATA_PREFIX)
cp -R --no-preserve=ownership data/title $(DATA_PREFIX)
cp -R --no-preserve=ownership data/help $(DATA_PREFIX)
ifeq ($(TILES), 1)
cp -R --no-preserve=ownership gfx $(DATA_PREFIX)
endif
ifeq ($(SOUND), 1)
cp -R --no-preserve=ownership data/sound $(DATA_PREFIX)
endif
install --mode=644 data/changelog.txt data/cataicon.ico \
LICENSE.txt LICENSE-OFL-Terminus-Font.txt -t $(DATA_PREFIX)
mkdir -p $(LOCALE_DIR)
ifdef LANGUAGES
LOCALE_DIR=$(LOCALE_DIR) lang/compile_mo.sh $(LANGUAGES)
endif
endif
ifeq ($(NATIVE), osx)
APPTARGETDIR=Cataclysm.app
APPRESOURCESDIR=$(APPTARGETDIR)/Contents/Resources
APPDATADIR=$(APPRESOURCESDIR)/data
ifndef FRAMEWORK
SDLLIBSDIR=$(shell sdl2-config --libs | sed -n 's/.*-L\([^ ]*\) .*/\1/p')
endif # ifndef FRAMEWORK
appclean:
rm -rf $(APPTARGETDIR)
rm -f data/options.txt
rm -f data/keymap.txt
rm -f data/auto_pickup.txt
rm -f data/fontlist.txt
build-data/osx/AppIcon.icns: build-data/osx/AppIcon.iconset
iconutil -c icns $<
ifdef OSXCROSS
app: appclean version $(APPTARGET)
else
app: appclean version build-data/osx/AppIcon.icns $(APPTARGET)
endif
mkdir -p $(APPTARGETDIR)/Contents
cp build-data/osx/Info.plist $(APPTARGETDIR)/Contents/
mkdir -p $(APPTARGETDIR)/Contents/MacOS
cp build-data/osx/Cataclysm.sh $(APPTARGETDIR)/Contents/MacOS/
mkdir -p $(APPRESOURCESDIR)
cp $(APPTARGET) $(APPRESOURCESDIR)/
cp build-data/osx/AppIcon.icns $(APPRESOURCESDIR)/