forked from jamespetts/simutrans-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
797 lines (739 loc) · 23.7 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
#
# This file is part of the Simutrans-Extended project under the Artistic License.
# (see LICENSE.txt)
#
CFG ?= default
-include config.$(CFG)
BACKENDS = gdi sdl2 mixer_sdl2 posix
COLOUR_DEPTHS = 0 16
OSTYPES = amiga beos cygwin freebsd haiku linux mingw32 mingw64 mac openbsd
ifeq ($(findstring $(BACKEND), $(BACKENDS)),)
$(error Unkown BACKEND "$(BACKEND)", must be one of "$(BACKENDS)")
endif
ifeq ($(findstring $(COLOUR_DEPTH), $(COLOUR_DEPTHS)),)
$(error Unkown COLOUR_DEPTH "$(COLOUR_DEPTH)", must be one of "$(COLOUR_DEPTHS)")
endif
ifeq ($(findstring $(OSTYPE), $(OSTYPES)),)
$(error Unkown OSTYPE "$(OSTYPE)", must be one of "$(OSTYPES)")
endif
ifeq ($(OSTYPE),amiga)
STD_LIBS ?= -lunix -lSDL_mixer -lsmpeg -lvorbisfile -lvorbis -logg
CFLAGS += -mcrt=newlib -DSIM_BIG_ENDIAN -gstabs+
LDFLAGS += -Bstatic -non_shared
else
# BeOS (obsolete)
ifeq ($(OSTYPE),beos)
LIBS += -lnet
else
ifneq ($(findstring $(OSTYPE), cygwin mingw32 mingw64),)
ifeq ($(OSTYPE),cygwin)
CFLAGS += -I/usr/include/mingw -mwin32
else
ifeq ($(OSTYPE), mingw32)
CFLAGS += -DPNG_STATIC -DZLIB_STATIC -static
LDFLAGS += -static-libgcc -static-libstdc++ -Wl,--large-address-aware -static
ifeq ($(USE_FREETYPE),1)
LDFLAGS += -Wl,-Bstatic -lfreetype -lpng -lharfbuzz -lgraphite2 -lfreetype -Wl,-Bdynamic
endif
LIBS += -lmingw32
endif
ifeq ($(OSTYPE), mingw64)
CFLAGS += -DPNG_STATIC -DZLIB_STATIC -static
LDFLAGS += -static-libgcc -static-libstdc++ -static
LIBS += -lmingw32
endif
endif
CFLAGS += -DNOMINMAX -DWIN32_LEAN_AND_MEAN -DWINVER=0x0501 -D_WIN32_IE=0x0500
LIBS += -lgdi32 -lwinmm -lws2_32 -limm32
# Disable the console on Windows unless WIN32_CONSOLE is set or graphics are disabled
ifneq ($(WIN32_CONSOLE),)
LDFLAGS += -mconsole
else
ifeq ($(BACKEND),posix)
LDFLAGS += -mconsole
else
LDFLAGS += -mwindows
endif
endif
else
# Haiku (needs to activate the GCC 4x)
ifeq ($(OSTYPE),haiku)
LIBS += -lnetwork -lbe
endif
endif
endif
endif
ifeq ($(OSTYPE),mac)
CFLAGS += -stdlib=libc++
LDFLAGS += -stdlib=libc++
endif
ifeq ($(BACKEND),sdl2)
SOURCES += sys/clipboard_s2.cc
else ifeq ($(OSTYPE),mingw)
SOURCES += sys/clipboard_w32.cc
else
SOURCES += sys/clipboard_internal.cc
endif
LIBS += -lbz2 -lz -lpng
CXXFLAGS += -std=c++14
ifneq ($(OSTYPE),mingw)
LIBS += -lbz2 -lz
endif
USE_UPNP ?= 0
USE_FREETYPE ?= 0
ALLEGRO_CONFIG ?= allegro-config
SDL2_CONFIG ?= pkg-config sdl2
#SDL2_CONFIG ?= sdl2-config
FREETYPE_CONFIG ?= pkg-config freetype2
#FREETYPE_CONFIG ?= freetype-config
ifneq ($(LTO),)
CFLAGS += -flto
LDFLAGS += -flto
endif
ifeq ($(shell getconf LONG_BIT),64)
CFLAGS += -DHAS_64_BIT_SYSTEM
endif
ifneq ($(TUNE_NATIVE),)
CFLAGS += -march=native -mtune=native
LDFLAGS += -march=native -mtune=native
ifneq ($(GCC_POPCOUNT),)
CFLAGS += -DUSE_GCC_POPCOUNT
endif
endif
ifneq ($(OPTIMISE),)
CFLAGS += -O3
ifeq ($(findstring $(OSTYPE), amiga),)
ifneq ($(findstring clang,$(CXX)),)
CFLAGS += -minline-all-stringops
endif
endif
else
CFLAGS += -O
endif
ifdef DEBUG
ifndef MSG_LEVEL
MSG_LEVEL = 3
endif
ifeq ($(shell expr $(DEBUG) \>= 1), 1)
CFLAGS += -g -DDEBUG
endif
ifeq ($(shell expr $(DEBUG) \>= 2), 1)
ifneq ($(PROFILE), 2)
CFLAGS += -fno-inline
endif
endif
ifeq ($(shell expr $(DEBUG) \>= 3), 1)
ifneq ($(PROFILE), 2)
CFLAGS += -O0
endif
endif
else
CFLAGS += -DNDEBUG
endif
ifdef MSG_LEVEL
CFLAGS += -DMSG_LEVEL=$(MSG_LEVEL)
endif
ifeq ($(USE_UPNP),1)
CFLAGS += -DUSE_UPNP
ifeq ($(OSTYPE),mingw)
LDFLAGS += -Wl,-Bstatic -lminiupnpc -Wl,-Bdynamic -liphlpapi
else
LDFLAGS += -lminiupnpc
endif
endif
ifdef USE_FREETYPE
ifeq ($(shell expr $(USE_FREETYPE) \>= 1), 1)
CFLAGS += -DUSE_FREETYPE
ifneq ($(FREETYPE_CONFIG),)
CFLAGS += $(shell $(FREETYPE_CONFIG) --cflags)
ifeq ($(shell expr $(STATIC) \>= 1), 1)
# since static is not supported by slightly old freetype versions
FTF = $(shell $(FREETYPE_CONFIG) --libs --static)
ifneq ($(FTF),)
LDFLAGS += $(FTF)
else
LDFLAGS += $(shell $(FREETYPE_CONFIG) --libs)
endif
else
LDFLAGS += $(shell $(FREETYPE_CONFIG) --libs)
endif
else
LDFLAGS += -lfreetype
ifeq ($(OSTYPE),mingw)
LDFLAGS += -lpng -lharfbuzz
endif
endif
ifeq ($(OSTYPE),mingw)
LDFLAGS += -lfreetype
endif
endif
endif
ifneq ($(PROFILE),)
CFLAGS += -pg -DPROFILE
ifdef MSG_LEVEL
CFLAGS += -DMSG_LEVEL=$(MSG_LEVEL)
endif
ifneq ($(PROFILE), 2)
CFLAGS += -fno-inline -fno-schedule-insns
endif
LDFLAGS += -pg
endif
ifdef USE_ZSTD
ifeq ($(shell expr $(USE_ZSTD) \>= 1), 1)
FLAGS += -DUSE_ZSTD
LDFLAGS += -lzstd
SOURCES += io/rdwr/zstd_file_rdwr_stream.cc
endif
endif
ifdef USE_FLUIDSYNTH_MIDI
ifeq ($(shell expr $(USE_FLUIDSYNTH_MIDI) \>= 1), 1)
CFLAGS += -DUSE_FLUIDSYNTH_MIDI
SOURCES += music/fluidsynth.cc
SOURCES += gui/loadsoundfont_frame.cc
LDFLAGS += -lfluidsynth
ifeq ($(OSTYPE),mingw)
# fluidsynth.pc doesn't properly list dependant libraries, unable to use pkg-config. Manually listed below. Only valid for fluidsynth built with options: "-DBUILD_SHARED_LIBS=0 -Denable-aufile=0 -Denable-dbus=0 -Denable-ipv6=0 -Denable-jack=0 -Denable-ladspa=0 -Denable-midishare=0 -Denable-opensles=0 -Denable-oboe=0 -Denable-oss=0 -Denable-readline=0 -Denable-winmidi=0 -Denable-waveout=0 -Denable-libsndfile=0 -Denable-network=0 -Denable-pulseaudio=0 Denable-dsound=1 -Denable-sdl2=0"
LDFLAGS += -lglib-2.0 -lintl -liconv -ldsound -lole32
endif
endif
else
USE_FLUIDSYNTH_MIDI = 0
endif
ifneq ($(MULTI_THREAD),)
ifeq ($(shell expr $(MULTI_THREAD) \>= 1), 1)
CFLAGS += -DMULTI_THREAD
ifeq ($(OSTYPE),mingw32 mingw64)
#use lpthreadGC2d for debug alternatively
# Disabled, as this does not work for cross-compiling
# LDFLAGS += -lpthreadGC2
LDFLAGS += -static -lpthread
else
ifneq ($(OSTYPE),haiku)
LDFLAGS += -lpthread
endif
endif
endif
endif
ifneq ($(WITH_REVISION),)
ifeq ($(shell expr $(WITH_REVISION) \>= 1), 1)
ifeq ($(shell expr $(WITH_REVISION) \>= 2), 1)
REV = $(WITH_REVISION)
else
REV = $(shell git rev-parse --short=7 HEAD)
endif
ifneq ($(REV),)
CFLAGS += -DREVISION="$(REV)"
endif
endif
endif
CFLAGS += -Wall -W -Wcast-qual -Wpointer-arith -Wcast-align $(FLAGS)
CCFLAGS += -ansi -Wstrict-prototypes -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
SOURCES += bauer/brueckenbauer.cc
SOURCES += bauer/fabrikbauer.cc
SOURCES += bauer/hausbauer.cc
SOURCES += bauer/tunnelbauer.cc
SOURCES += bauer/tree_builder.cc
SOURCES += bauer/vehikelbauer.cc
SOURCES += bauer/goods_manager.cc
SOURCES += bauer/wegbauer.cc
SOURCES += descriptor/image.cc
SOURCES += descriptor/bridge_desc.cc
SOURCES += descriptor/factory_desc.cc
SOURCES += descriptor/ground_desc.cc
SOURCES += descriptor/building_desc.cc
SOURCES += descriptor/obj_base_desc.cc
SOURCES += descriptor/reader/bridge_reader.cc
SOURCES += descriptor/reader/building_reader.cc
SOURCES += descriptor/reader/citycar_reader.cc
SOURCES += descriptor/reader/crossing_reader.cc
SOURCES += descriptor/reader/factory_reader.cc
SOURCES += descriptor/reader/good_reader.cc
SOURCES += descriptor/reader/ground_reader.cc
SOURCES += descriptor/reader/groundobj_reader.cc
SOURCES += descriptor/reader/image_reader.cc
SOURCES += descriptor/reader/imagelist2d_reader.cc
SOURCES += descriptor/reader/imagelist3d_reader.cc
SOURCES += descriptor/reader/imagelist_reader.cc
SOURCES += descriptor/reader/obj_reader.cc
SOURCES += descriptor/reader/pedestrian_reader.cc
SOURCES += descriptor/reader/roadsign_reader.cc
SOURCES += descriptor/reader/root_reader.cc
SOURCES += descriptor/reader/sim_reader.cc
SOURCES += descriptor/reader/skin_reader.cc
SOURCES += descriptor/reader/sound_reader.cc
SOURCES += descriptor/reader/text_reader.cc
SOURCES += descriptor/reader/tree_reader.cc
SOURCES += descriptor/reader/tunnel_reader.cc
SOURCES += descriptor/reader/vehicle_reader.cc
SOURCES += descriptor/reader/way_obj_reader.cc
SOURCES += descriptor/reader/way_reader.cc
SOURCES += descriptor/reader/xref_reader.cc
SOURCES += descriptor/sound_desc.cc
SOURCES += descriptor/tunnel_desc.cc
SOURCES += descriptor/vehicle_desc.cc
SOURCES += descriptor/goods_desc.cc
SOURCES += descriptor/way_desc.cc
SOURCES += boden/boden.cc
SOURCES += boden/brueckenboden.cc
SOURCES += boden/fundament.cc
SOURCES += boden/grund.cc
SOURCES += boden/monorailboden.cc
SOURCES += boden/tunnelboden.cc
SOURCES += boden/wasser.cc
SOURCES += boden/wege/kanal.cc
SOURCES += boden/wege/maglev.cc
SOURCES += boden/wege/monorail.cc
SOURCES += boden/wege/narrowgauge.cc
SOURCES += boden/wege/runway.cc
SOURCES += boden/wege/schiene.cc
SOURCES += boden/wege/strasse.cc
SOURCES += boden/wege/weg.cc
SOURCES += dataobj/crossing_logic.cc
SOURCES += dataobj/objlist.cc
SOURCES += dataobj/settings.cc
SOURCES += dataobj/schedule.cc
SOURCES += dataobj/sve_cache.cc
SOURCES += dataobj/freelist.cc
SOURCES += dataobj/gameinfo.cc
SOURCES += dataobj/height_map_loader.cc
SOURCES += dataobj/koord.cc
SOURCES += dataobj/koord3d.cc
SOURCES += dataobj/loadsave.cc
SOURCES += dataobj/marker.cc
SOURCES += dataobj/powernet.cc
SOURCES += dataobj/rect.cc
SOURCES += dataobj/ribi.cc
SOURCES += dataobj/route.cc
SOURCES += dataobj/scenario.cc
SOURCES += dataobj/tabfile.cc
SOURCES += dataobj/translator.cc
SOURCES += dataobj/environment.cc
SOURCES += obj/baum.cc
SOURCES += obj/bruecke.cc
SOURCES += obj/crossing.cc
SOURCES += obj/field.cc
SOURCES += obj/gebaeude.cc
SOURCES += obj/groundobj.cc
SOURCES += obj/label.cc
SOURCES += obj/leitung2.cc
SOURCES += obj/pillar.cc
SOURCES += obj/roadsign.cc
SOURCES += obj/signal.cc
SOURCES += obj/simobj.cc
SOURCES += obj/tunnel.cc
SOURCES += obj/wayobj.cc
SOURCES += obj/wolke.cc
SOURCES += obj/zeiger.cc
SOURCES += display/font.cc
SOURCES += display/simgraph$(COLOUR_DEPTH).cc
SOURCES += display/simview.cc
SOURCES += display/viewport.cc
SOURCES += finder/placefinder.cc
SOURCES += gui/ai_option_t.cc
SOURCES += gui/banner.cc
SOURCES += gui/baum_edit.cc
SOURCES += gui/base_info.cc
SOURCES += gui/building_info.cc
SOURCES += gui/citybuilding_edit.cc
SOURCES += gui/citylist_frame_t.cc
SOURCES += gui/citylist_stats_t.cc
SOURCES += gui/climates.cc
SOURCES += gui/display_settings.cc
SOURCES += gui/components/gui_aligned_container.cc
SOURCES += gui/components/gui_building.cc
SOURCES += gui/components/gui_button.cc
SOURCES += gui/components/gui_button_to_chart.cc
SOURCES += gui/components/gui_chart.cc
SOURCES += gui/components/gui_colorbox.cc
SOURCES += gui/components/gui_combobox.cc
SOURCES += gui/components/gui_container.cc
SOURCES += gui/components/gui_convoiinfo.cc
SOURCES += gui/components/gui_divider.cc
SOURCES += gui/components/gui_obj_view_t.cc
SOURCES += gui/components/gui_destination_building_info.cc
SOURCES += gui/components/gui_factory_storage_info.cc
SOURCES += gui/components/gui_halthandled_lines.cc
SOURCES += gui/components/gui_halt_cargoinfo.cc
SOURCES += gui/components/gui_fixedwidth_textarea.cc
SOURCES += gui/components/gui_flowtext.cc
SOURCES += gui/components/gui_image.cc
SOURCES += gui/components/gui_image_list.cc
SOURCES += gui/components/gui_component.cc
SOURCES += gui/components/gui_label.cc
SOURCES += gui/components/gui_line_lettercode.cc
SOURCES += gui/components/gui_line_network.cc
SOURCES += gui/components/gui_map_preview.cc
SOURCES += gui/components/gui_numberinput.cc
SOURCES += gui/components/gui_schedule_item.cc
SOURCES += gui/components/gui_scrollbar.cc
SOURCES += gui/components/gui_scrolled_list.cc
SOURCES += gui/components/gui_scrollpane.cc
SOURCES += gui/components/gui_speedbar.cc
SOURCES += gui/components/gui_tab_panel.cc
SOURCES += gui/components/gui_textarea.cc
SOURCES += gui/components/gui_textinput.cc
SOURCES += gui/components/gui_vehicle_capacitybar.cc
SOURCES += gui/components/gui_vehicle_cargoinfo.cc
SOURCES += gui/components/gui_waytype_image_box.cc
SOURCES += gui/components/gui_waytype_tab_panel.cc
SOURCES += gui/components/gui_world_view_t.cc
SOURCES += gui/convoi_detail_t.cc
SOURCES += gui/convoi_filter_frame.cc
SOURCES += gui/convoi_frame.cc
SOURCES += gui/convoi_info_t.cc
SOURCES += gui/convoy_item.cc
SOURCES += gui/curiosity_edit.cc
SOURCES += gui/curiositylist_frame_t.cc
SOURCES += gui/curiositylist_stats_t.cc
SOURCES += gui/depot_frame.cc
SOURCES += gui/depotlist_frame.cc
SOURCES += gui/enlarge_map_frame_t.cc
SOURCES += gui/extend_edit.cc
SOURCES += gui/fabrik_info.cc
SOURCES += gui/factory_chart.cc
SOURCES += gui/factory_edit.cc
SOURCES += gui/factory_legend.cc
SOURCES += gui/factorylist_frame_t.cc
SOURCES += gui/factorylist_stats_t.cc
SOURCES += gui/schedule_gui.cc
SOURCES += gui/goods_frame_t.cc
SOURCES += gui/goods_stats_t.cc
SOURCES += gui/ground_info.cc
SOURCES += gui/groundobj_edit.cc
SOURCES += gui/gui_frame.cc
SOURCES += gui/gui_theme.cc
SOURCES += gui/halt_detail.cc
SOURCES += gui/halt_info.cc
SOURCES += gui/halt_list_filter_frame.cc
SOURCES += gui/halt_list_frame.cc
SOURCES += gui/halt_list_stats.cc
SOURCES += gui/headquarter_info.cc
SOURCES += gui/help_frame.cc
SOURCES += gui/jump_frame.cc
SOURCES += gui/minimap.cc
SOURCES += gui/kennfarbe.cc
SOURCES += gui/label_info.cc
SOURCES += gui/labellist_frame_t.cc
SOURCES += gui/labellist_stats_t.cc
SOURCES += gui/linelist_stats_t.cc
SOURCES += gui/line_color_gui.cc
SOURCES += gui/line_item.cc
SOURCES += gui/line_management_gui.cc
SOURCES += gui/line_waiting_status.cc
SOURCES += gui/load_relief_frame.cc
SOURCES += gui/loadfont_frame.cc
SOURCES += gui/loadsave_frame.cc
SOURCES += gui/map_frame.cc
SOURCES += gui/message_frame_t.cc
SOURCES += gui/message_option_t.cc
SOURCES += gui/message_stats_t.cc
SOURCES += gui/messagebox.cc
SOURCES += gui/money_frame.cc
SOURCES += gui/onewaysign_info.cc
SOURCES += gui/optionen.cc
SOURCES += gui/overtaking_mode.cc
SOURCES += gui/pakselector.cc
SOURCES += gui/password_frame.cc
SOURCES += gui/player_frame_t.cc
SOURCES += gui/player_ranking_frame.cc
SOURCES += gui/privatesign_info.cc
SOURCES += gui/savegame_frame.cc
SOURCES += gui/scenario_frame.cc
SOURCES += gui/scenario_info.cc
SOURCES += gui/schedule_list.cc
SOURCES += gui/server_frame.cc
SOURCES += gui/settings_frame.cc
SOURCES += gui/settings_stats.cc
SOURCES += gui/signal_connector_gui.cc
SOURCES += gui/signal_info.cc
SOURCES += gui/signal_spacing.cc
SOURCES += gui/signalboxlist_frame.cc
SOURCES += gui/simwin.cc
SOURCES += gui/sound_frame.cc
SOURCES += gui/sprachen.cc
SOURCES += gui/times_history_container.cc
SOURCES += gui/city_info.cc
SOURCES += gui/station_building_select.cc
SOURCES += gui/themeselector.cc
SOURCES += gui/tool_selector
SOURCES += gui/trafficlight_info.cc
SOURCES += gui/vehiclelist_frame.cc
SOURCES += gui/obj_info.cc
SOURCES += gui/slim_obj_info.cc
SOURCES += gui/vehicle_class_manager.cc
SOURCES += gui/vehicle_detail.cc
SOURCES += gui/water_info.cc
SOURCES += gui/way_info.cc
SOURCES += gui/welt.cc
SOURCES += io/classify_file.cc
SOURCES += io/rdwr/bzip2_file_rdwr_stream.cc
SOURCES += io/rdwr/raw_file_rdwr_stream.cc
SOURCES += io/raw_image.cc
SOURCES += io/raw_image_bmp.cc
SOURCES += io/raw_image_png.cc
SOURCES += io/raw_image_ppm.cc
SOURCES += io/rdwr/adler32_stream.cc
SOURCES += io/rdwr/compare_file_rd_stream.cc
SOURCES += io/rdwr/rdwr_stream.cc
SOURCES += io/rdwr/zlib_file_rdwr_stream.cc
SOURCES += network/checksum.cc
SOURCES += network/memory_rw.cc
SOURCES += network/network.cc
SOURCES += network/network_address.cc
SOURCES += network/network_cmd.cc
SOURCES += network/network_cmd_ingame.cc
SOURCES += network/network_cmd_scenario.cc
SOURCES += network/network_cmp_pakset.cc
SOURCES += network/network_file_transfer.cc
SOURCES += network/network_packet.cc
SOURCES += network/network_socket_list.cc
SOURCES += network/pakset_info.cc
SOURCES += network/pwd_hash.cc
SOURCES += old_blockmanager.cc
SOURCES += player/ai.cc
SOURCES += player/ai_goods.cc
SOURCES += player/ai_passenger.cc
SOURCES += player/finance.cc
SOURCES += player/simplay.cc
SOURCES += script/api_class.cc
SOURCES += script/api_function.cc
SOURCES += script/api_param.cc
SOURCES += script/api/api_city.cc
SOURCES += script/api/api_command.cc
SOURCES += script/api/api_const.cc
SOURCES += script/api/api_control.cc
SOURCES += script/api/api_convoy.cc
SOURCES += script/api/api_gui.cc
SOURCES += script/api/api_factory.cc
SOURCES += script/api/api_halt.cc
SOURCES += script/api/api_include.cc
SOURCES += script/api/api_line.cc
SOURCES += script/api/api_map_objects.cc
SOURCES += script/api/api_obj_desc.cc
SOURCES += script/api/api_obj_desc_base.cc
SOURCES += script/api/api_pathfinding.cc
SOURCES += script/api/api_player.cc
SOURCES += script/api/api_scenario.cc
SOURCES += script/api/api_schedule.cc
SOURCES += script/api/api_settings.cc
SOURCES += script/api/api_simple.cc
SOURCES += script/api/api_tiles.cc
SOURCES += script/api/api_world.cc
SOURCES += script/api/export_desc.cc
SOURCES += script/api/get_next.cc
SOURCES += script/dynamic_string.cc
SOURCES += script/export_objs.cc
SOURCES += script/script.cc
SOURCES += script/script_loader.cc
SOURCES += squirrel/sq_extensions.cc
SOURCES += squirrel/squirrel/sqapi.cc
SOURCES += squirrel/squirrel/sqclass.cc
SOURCES += squirrel/squirrel/sqdebug.cc
SOURCES += squirrel/squirrel/sqlexer.cc
SOURCES += squirrel/squirrel/sqobject.cc
SOURCES += squirrel/squirrel/sqtable.cc
SOURCES += squirrel/squirrel/sqbaselib.cc
SOURCES += squirrel/squirrel/sqcompiler.cc
SOURCES += squirrel/squirrel/sqfuncstate.cc
SOURCES += squirrel/squirrel/sqmem.cc
SOURCES += squirrel/squirrel/sqstate.cc
SOURCES += squirrel/squirrel/sqvm.cc
SOURCES += squirrel/sqstdlib/sqstdaux.cc
SOURCES += squirrel/sqstdlib/sqstdio.cc
SOURCES += squirrel/sqstdlib/sqstdrex.cc
SOURCES += squirrel/sqstdlib/sqstdstring.cc
SOURCES += squirrel/sqstdlib/sqstdblob.cc
SOURCES += squirrel/sqstdlib/sqstdmath.cc
SOURCES += squirrel/sqstdlib/sqstdstream.cc
SOURCES += squirrel/sqstdlib/sqstdsystem.cc
SOURCES += simcity.cc
SOURCES += simconvoi.cc
SOURCES += simdebug.cc
SOURCES += simdepot.cc
SOURCES += simevent.cc
SOURCES += simfab.cc
SOURCES += simhalt.cc
SOURCES += siminteraction.cc
SOURCES += simintr.cc
SOURCES += simio.cc
SOURCES += simline.cc
SOURCES += simlinemgmt.cc
SOURCES += simloadingscreen.cc
SOURCES += simmain.cc
SOURCES += simmem.cc
SOURCES += simmenu.cc
SOURCES += simmesg.cc
SOURCES += simplan.cc
SOURCES += simsignalbox.cc
SOURCES += simskin.cc
SOURCES += simsound.cc
SOURCES += simticker.cc
SOURCES += simtool.cc
SOURCES += simware.cc
SOURCES += simworld.cc
SOURCES += sys/simsys.cc
SOURCES += unicode.cc
SOURCES += utils/cbuffer_t.cc
SOURCES += utils/checklist.cc
SOURCES += utils/csv.cc
SOURCES += utils/log.cc
SOURCES += utils/searchfolder.cc
SOURCES += utils/sha1.cc
SOURCES += utils/simrandom.cc
SOURCES += utils/simstring.cc
SOURCES += utils/simthread.cc
SOURCES += vehicle/air_vehicle.cc
SOURCES += vehicle/movingobj.cc
SOURCES += vehicle/pedestrian.cc
SOURCES += vehicle/rail_vehicle.cc
SOURCES += vehicle/road_vehicle.cc
SOURCES += vehicle/simroadtraffic.cc
SOURCES += vehicle/vehicle.cc
SOURCES += vehicle/water_vehicle.cc
SOURCES += world/terraformer.cc
SOURCES += simunits.cc
SOURCES += convoy.cc
SOURCES += utils/float32e8_t.cc
SOURCES += path_explorer.cc
SOURCES += gui/components/gui_table.cc
SOURCES += gui/components/gui_convoy_assembler.cc
SOURCES += gui/components/gui_convoy_formation.cc
SOURCES += gui/components/gui_convoy_payloadinfo.cc
SOURCES += gui/replace_frame.cc
SOURCES += dataobj/livery_scheme.cc
SOURCES += dataobj/replace_data.cc
SOURCES += obj/pier.cc
SOURCES += descriptor/reader/pier_reader.cc
SOURCES += bauer/pier_builder.cc
SOURCES += boden/pier_deck.cc
SOURCES += descriptor/pier_desc.cc
SOURCES += gui/pier_rotation_select.cc
LDFLAGS += -lpng
ifeq ($(BACKEND),posix)
SOURCES += sys/simsys_posix.cc
SOURCES += music/no_midi.cc
SOURCES += sound/no_sound.cc
else ifeq ($(BACKEND),gdi)
SOURCES += sys/simsys_w.cc
SOURCES += sound/win32_sound_xa.cc
CFLAGS += -DGDI_SOUND
ifneq ($(shell expr $(USE_FLUIDSYNTH_MIDI) \>= 1), 1)
SOURCES += music/w32_midi.cc
endif
else ifeq ($(BACKEND),sdl2)
SOURCES += sys/simsys_s2.cc
ifeq ($(OSTYPE),mac)
ifeq ($(shell expr $(AV_FOUNDATION) \>= 1), 1)
# Core Audio (AVFoundation) base sound system routines
SOURCES += sound/AVF_core-audio_sound.mm
LIBS += -framework Foundation -framework AVFoundation
ifneq ($(shell expr $(USE_FLUIDSYNTH_MIDI) \>= 1), 1)
SOURCES += music/AVF_core-audio_midi.mm
endif
else
# Core Audio (Quicktime) base sound system routines
SOURCES += sound/core-audio_sound.mm
LIBS += -framework Foundation -framework QTKit
ifneq ($(shell expr $(USE_FLUIDSYNTH_MIDI) \>= 1), 1)
SOURCES += music/core-audio_midi.mm
endif
endif
else
SOURCES += sound/sdl2_sound.cc
ifneq ($(shell expr $(USE_FLUIDSYNTH_MIDI) \>= 1), 1)
ifeq ($(findstring $(OSTYPE), cygwin mingw32 mingw64),)
SOURCES += music/no_midi.cc
else
SOURCES += music/w32_midi.cc
endif
endif
endif
ifeq ($(SDL2_CONFIG),)
ifeq ($(OSTYPE),mac)
SDL_CFLAGS := -I/Library/Frameworks/SDL2.framework/Headers
SDL_LDFLAGS := -F/Library/Frameworks -framework SDL2
else
SDL_CFLAGS := -I$(MINGDIR)/include/SDL2 -Dmain=SDL_main
SDL_LDFLAGS := -lSDL2main -lSDL2
endif
else
SDL_CFLAGS := $(shell $(SDL2_CONFIG) --cflags)
ifneq ($(STATIC),)
ifeq ($(shell expr $(STATIC) \>= 1), 1)
ifneq ($(findstring sdl2-config,$(SDL2_CONFIG)),)
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --static-libs)
else # assume pkg-config
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs --static)
endif
else
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs)
endif
else
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs)
endif
endif
CFLAGS += $(SDL_CFLAGS)
LIBS += $(SDL_LDFLAGS)
else ifeq ($(BACKEND),mixer_sdl2)
SOURCES += sys/simsys_s2.cc
ifeq ($(SDL2_CONFIG),)
ifeq ($(OSTYPE),mac)
SDL_CFLAGS := -I/Library/Frameworks/SDL2.framework/Headers
SDL_LDFLAGS := -framework SDL2
else
SDL_CFLAGS := -I$(MINGDIR)/include/SDL2 -Dmain=SDL_main
SDL_LDFLAGS := -lSDL2main -lSDL2
endif
else
SOURCES += sound/sdl2_mixer_sound.cc
SOURCES += music/sdl2_mixer_midi.cc
SDL_CFLAGS := $(shell $(SDL2_CONFIG) --cflags)
ifneq ($(STATIC),)
ifeq ($(shell expr $(STATIC) \>= 1), 1)
ifneq ($(findstring sdl2-config,$(SDL2_CONFIG)),)
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --static-libs)
else # assume pkg-config
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs --static)
endif
else
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs)
endif
else
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs)
endif
endif
CFLAGS += $(SDL_CFLAGS)
LIBS += $(SDL_LDFLAGS) -lSDL2_mixer
endif
CFLAGS += -DCOLOUR_DEPTH=$(COLOUR_DEPTH)
ifneq ($(findstring $(OSTYPE), cygwin mingw32 mingw64),)
SOURCES += simres.rc
# See https://sourceforge.net/p/mingw-w64/discussion/723798/thread/bf2a464d/
ifeq ($(OSTYPE), mingw32)
WINDRES ?= windres -F pe-i386
else
ifeq ($(OSTYPE), mingw64)
WINDRES ?= x86_64-w64-mingw32-windres
endif
endif
endif
CCFLAGS += $(CFLAGS)
CXXFLAGS += $(CFLAGS)
BUILDDIR ?= build/$(CFG)
PROGDIR ?= $(BUILDDIR)
ifneq ($(findstring $(OSTYPE), cygwin mingw32 mingw64),)
PROG ?= Simutrans-Extended.exe
else
PROG ?= simutrans-extended
endif
include common.mk
ifeq ($(OSTYPE),mac)
include OSX/osx.mk
endif
.PHONY: makeobj nettool
makeobj:
$(Q)$(MAKE) -e -C makeobj FLAGS="$(FLAGS)"
nettool:
$(Q)$(MAKE) -e -C nettools FLAGS="$(FLAGS)"
test: simutrans
$(BUILDDIR)/$(PROG) -set_workdir $(shell pwd)/simutrans -objects pak -scenario automated-tests -debug 2 -lang en -fps 100