forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
691 lines (645 loc) · 20.2 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
CFG ?= default
-include config.$(CFG)
HOSTCC ?=$(CC)
HOSTCXX ?=$(CXX)
PROFILE ?= 0
STATIC ?= 0
AV_FOUNDATION ?= 0
ALLEGRO_CONFIG ?= allegro-config
SDL_CONFIG ?= sdl-config
SDL2_CONFIG ?= sdl2-config
FREETYPE_CONFIG ?= freetype-config
BACKENDS = allegro gdi sdl sdl2 mixer_sdl mixer_sdl2 posix
COLOUR_DEPTHS = 0 16
OSTYPES = amiga beos freebsd haiku linux mingw 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 ifeq ($(OSTYPE),beos)
# BeOS (obsolete)
LIBS += -lnet
else ifeq ($(OSTYPE),freebsd)
CFLAGS += -I/usr/local/include
else ifeq ($(OSTYPE),haiku)
# Haiku (needs to activate the GCC 4x)
LIBS += -lnetwork -lbe
else ifeq ($(OSTYPE),mingw)
CFLAGS += -DPNG_STATIC -DZLIB_STATIC
ifeq ($(shell expr $(STATIC) \>= 1), 1)
CFLAGS += -static
LDFLAGS += -static-libgcc -static-libstdc++ -static
endif
LDFLAGS += -pthread -Wl,--large-address-aware -Wno-deprecated-copy
SOURCES += simsys_w32_png.cc
CFLAGS += -DNOMINMAX -DWIN32_LEAN_AND_MEAN -DWINVER=0x0501 -D_WIN32_IE=0x0500
LIBS += -lmingw32 -lgdi32 -lwinmm -lws2_32 -limm32
# Disable the console on Windows unless WIN32_CONSOLE is set or graphics are disabled
ifdef WIN32_CONSOLE
ifeq ($(shell expr $(WIN32_CONSOLE) \>= 1), 1)
LDFLAGS += -mconsole
endif
else ifeq ($(BACKEND),posix)
LDFLAGS += -mconsole
else
LDFLAGS += -mwindows
endif
endif
ifeq ($(BACKEND),sdl2)
SOURCES += clipboard_s2.cc
else ifeq ($(OSTYPE),mingw)
SOURCES += clipboard_w32.cc
else
SOURCES += clipboard_internal.cc
endif
LIBS += -lbz2 -lz
ifdef OPTIMISE
ifeq ($(shell expr $(OPTIMISE) \>= 1), 1)
CFLAGS += -O3
ifeq ($(findstring $(OSTYPE), amiga),)
ifneq ($(findstring $(CXX), clang),)
CFLAGS += -minline-all-stringops
endif
endif
endif
else
CFLAGS += -O
endif
ifdef DEBUG
MSG_LEVEL ?= 3
ifeq ($(shell expr $(DEBUG) \>= 1), 1)
CFLAGS += -g -DDEBUG
endif
ifeq ($(shell expr $(DEBUG) \>= 2), 1)
ifeq ($(shell expr $(PROFILE) \>= 2), 1)
CFLAGS += -fno-inline
endif
endif
ifeq ($(shell expr $(DEBUG) \>= 3), 1)
ifeq ($(shell expr $(PROFILE) \>= 2), 1)
CFLAGS += -O0
endif
endif
else
CFLAGS += -DNDEBUG
endif
ifdef MSG_LEVEL
CFLAGS += -DMSG_LEVEL=$(MSG_LEVEL)
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
ifdef USE_UPNP
ifeq ($(shell expr $(USE_UPNP) \>= 1), 1)
CFLAGS += -DUSE_UPNP
LDFLAGS += -lminiupnpc
ifeq ($(OSTYPE),mingw)
ifeq ($(shell expr $(STATIC) \>= 1), 1)
LDFLAGS += -Wl,-Bdynamic
endif
LDFLAGS += -liphlpapi
ifeq ($(shell expr $(STATIC) \>= 1), 1)
LDFLAGS += -Wl,-Bstatic
endif
endif
endif
endif
ifeq ($(shell expr $(PROFILE) \>= 1), 1)
CFLAGS += -pg -DPROFILE
ifeq ($(shell expr $(PROFILE) \>= 2), 1)
CFLAGS += -fno-inline -fno-schedule-insns
endif
LDFLAGS += -pg
endif
ifdef MULTI_THREAD
ifeq ($(shell expr $(MULTI_THREAD) \>= 1), 1)
CFLAGS += -DMULTI_THREAD
ifneq ($(OSTYPE),haiku)
# mingw has already added pthread statically
ifneq ($(OSTYPE),mingw)
LDFLAGS += -lpthread
endif
endif
endif
endif
ifdef WITH_REVISION
ifeq ($(shell expr $(WITH_REVISION) \>= 1), 1)
ifeq ($(shell expr $(WITH_REVISION) \>= 2), 1)
REV = $(WITH_REVISION)
else
REV = $(shell svnversion)
endif
ifneq ($(REV),)
CFLAGS += -DREVISION="$(REV)"
endif
endif
endif
CFLAGS += -Wall -Wextra -Wcast-qual -Wpointer-arith -Wcast-align $(FLAGS)
CCFLAGS += -ansi -Wstrict-prototypes -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
# sources (in alphabetic order)
SOURCES += bauer/brueckenbauer.cc
SOURCES += bauer/fabrikbauer.cc
SOURCES += bauer/goods_manager.cc
SOURCES += bauer/hausbauer.cc
SOURCES += bauer/tunnelbauer.cc
SOURCES += bauer/vehikelbauer.cc
SOURCES += bauer/wegbauer.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/environment.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/objlist.cc
SOURCES += dataobj/powernet.cc
SOURCES += dataobj/records.cc
SOURCES += dataobj/rect.cc
SOURCES += dataobj/ribi.cc
SOURCES += dataobj/route.cc
SOURCES += dataobj/scenario.cc
SOURCES += dataobj/schedule.cc
SOURCES += dataobj/settings.cc
SOURCES += dataobj/tabfile.cc
SOURCES += dataobj/translator.cc
SOURCES += descriptor/bridge_desc.cc
SOURCES += descriptor/building_desc.cc
SOURCES += descriptor/factory_desc.cc
SOURCES += descriptor/goods_desc.cc
SOURCES += descriptor/ground_desc.cc
SOURCES += descriptor/image.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/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/way_desc.cc
SOURCES += display/font.cc
SOURCES += display/simgraph$(COLOUR_DEPTH).cc
SOURCES += display/simview.cc
SOURCES += display/viewport.cc
SOURCES += finder/placefinder.cc
SOURCES += freight_list_sorter.cc
SOURCES += gui/ai_option_t.cc
SOURCES += gui/ai_selector.cc
SOURCES += gui/banner.cc
SOURCES += gui/base_info.cc
SOURCES += gui/baum_edit.cc
SOURCES += gui/city_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/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_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_map_preview.cc
SOURCES += gui/components/gui_numberinput.cc
SOURCES += gui/components/gui_obj_view_t.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_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/display_settings.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/factorylist_frame_t.cc
SOURCES += gui/factorylist_stats_t.cc
SOURCES += gui/goods_frame_t.cc
SOURCES += gui/goods_stats_t.cc
SOURCES += gui/ground_info.cc
SOURCES += gui/gui_frame.cc
SOURCES += gui/gui_theme.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/line_item.cc
SOURCES += gui/line_management_gui.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/obj_info.cc
SOURCES += gui/optionen.cc
SOURCES += gui/pakselector.cc
SOURCES += gui/password_frame.cc
SOURCES += gui/player_frame_t.cc
SOURCES += gui/privatesign_info.cc
SOURCES += gui/savegame_frame.cc
SOURCES += gui/scenario_frame.cc
SOURCES += gui/scenario_info.cc
SOURCES += gui/schedule_gui.cc
SOURCES += gui/schedule_list.cc
SOURCES += gui/server_frame.cc
SOURCES += gui/settings_frame.cc
SOURCES += gui/settings_stats.cc
SOURCES += gui/signal_spacing.cc
SOURCES += gui/simwin.cc
SOURCES += gui/sound_frame.cc
SOURCES += gui/sprachen.cc
SOURCES += gui/station_building_select.cc
SOURCES += gui/themeselector.cc
SOURCES += gui/tool_selector.cc
SOURCES += gui/trafficlight_info.cc
SOURCES += gui/welt.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 += 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/tunnel.cc
SOURCES += obj/wayobj.cc
SOURCES += obj/wolke.cc
SOURCES += obj/zeiger.cc
SOURCES += old_blockmanager.cc
SOURCES += player/ai.cc
SOURCES += player/ai_goods.cc
SOURCES += player/ai_passenger.cc
SOURCES += player/ai_scripted.cc
SOURCES += player/finance.cc
SOURCES += player/simplay.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_factory.cc
SOURCES += script/api/api_gui.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/api_class.cc
SOURCES += script/api_function.cc
SOURCES += script/api_param.cc
SOURCES += script/dynamic_string.cc
SOURCES += script/export_objs.cc
SOURCES += script/script.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 += simobj.cc
SOURCES += simplan.cc
SOURCES += simskin.cc
SOURCES += simsound.cc
SOURCES += simsys.cc
SOURCES += simticker.cc
SOURCES += simtool.cc
SOURCES += simware.cc
SOURCES += simworld.cc
SOURCES += squirrel/sq_extensions.cc
SOURCES += squirrel/sqstdlib/sqstdaux.cc
SOURCES += squirrel/sqstdlib/sqstdblob.cc
SOURCES += squirrel/sqstdlib/sqstdio.cc
SOURCES += squirrel/sqstdlib/sqstdmath.cc
SOURCES += squirrel/sqstdlib/sqstdrex.cc
SOURCES += squirrel/sqstdlib/sqstdstream.cc
SOURCES += squirrel/sqstdlib/sqstdstring.cc
SOURCES += squirrel/sqstdlib/sqstdsystem.cc
SOURCES += squirrel/squirrel/sqapi.cc
SOURCES += squirrel/squirrel/sqbaselib.cc
SOURCES += squirrel/squirrel/sqclass.cc
SOURCES += squirrel/squirrel/sqcompiler.cc
SOURCES += squirrel/squirrel/sqdebug.cc
SOURCES += squirrel/squirrel/sqfuncstate.cc
SOURCES += squirrel/squirrel/sqlexer.cc
SOURCES += squirrel/squirrel/sqmem.cc
SOURCES += squirrel/squirrel/sqobject.cc
SOURCES += squirrel/squirrel/sqstate.cc
SOURCES += squirrel/squirrel/sqtable.cc
SOURCES += squirrel/squirrel/sqvm.cc
SOURCES += unicode.cc
SOURCES += utils/cbuffer_t.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/movingobj.cc
SOURCES += vehicle/simpeople.cc
SOURCES += vehicle/simroadtraffic.cc
SOURCES += vehicle/simvehicle.cc
ifeq ($(BACKEND),allegro)
SOURCES += simsys_d.cc
SOURCES += sound/allegro_sound.cc
SOURCES += music/allegro_midi.cc
ifeq ($(ALLEGRO_CONFIG),)
ALLEGRO_CFLAGS :=
ALLEGRO_LDFLAGS := -lalleg
else
ALLEGRO_CFLAGS := $(shell $(ALLEGRO_CONFIG) --cflags)
ALLEGRO_LDFLAGS := $(shell $(ALLEGRO_CONFIG) --libs)
endif
CFLAGS += $(ALLEGRO_CFLAGS) -DUSE_SOFTPOINTER
LIBS += $(ALLEGRO_LDFLAGS)
endif
ifeq ($(BACKEND),gdi)
SOURCES += simsys_w.cc
SOURCES += music/w32_midi.cc
SOURCES += sound/win32_sound.cc
endif
ifeq ($(BACKEND),sdl)
SOURCES += simsys_s.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
SOURCES += music/AVF_core-audio_midi.mm
LIBS += -framework Foundation -framework AVFoundation
else
# Core Audio (Quicktime) base sound system routines
SOURCES += sound/core-audio_sound.mm
SOURCES += music/core-audio_midi.mm
LIBS += -framework Foundation -framework QTKit
endif
else
SOURCES += sound/sdl_sound.cc
ifneq ($(OSTYPE),mingw)
SOURCES += music/no_midi.cc
else
SOURCES += music/w32_midi.cc
endif
endif
ifeq ($(SDL_CONFIG),)
ifeq ($(OSTYPE),mac)
SDL_CFLAGS := -I/Library/Frameworks/SDL.framework/Headers -Dmain=SDL_main
SDL_LDFLAGS := -framework SDL -framework Cocoa -I/Library/Frameworks/SDL.framework/Headers OSX/SDLMain.m
else
SDL_CFLAGS := -I$(MINGDIR)/include/SDL -Dmain=SDL_main
SDL_LDFLAGS := -lSDLmain -lSDL
endif
else
SDL_CFLAGS := $(shell $(SDL_CONFIG) --cflags)
ifeq ($(shell expr $(STATIC) \>= 1), 1)
SDL_LDFLAGS := $(shell $(SDL_CONFIG) --static-libs)
else
SDL_LDFLAGS := $(shell $(SDL_CONFIG) --libs)
endif
endif
CFLAGS += $(SDL_CFLAGS)
LIBS += $(SDL_LDFLAGS)
endif
ifeq ($(BACKEND),sdl2)
SOURCES += 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
SOURCES += music/AVF_core-audio_midi.mm
LIBS += -framework Foundation -framework AVFoundation
else
# Core Audio (Quicktime) base sound system routines
SOURCES += sound/core-audio_sound.mm
SOURCES += music/core-audio_midi.mm
LIBS += -framework Foundation -framework QTKit
endif
else
SOURCES += sound/sdl2_sound.cc
ifneq ($(OSTYPE),mingw)
SOURCES += music/no_midi.cc
else
SOURCES += music/w32_midi.cc
endif
endif
ifeq ($(SDL2_CONFIG),)
ifeq ($(OSTYPE),mac)
SDL_CFLAGS := -F /Library/Frameworks -I/Library/Frameworks/SDL2.framework/Headers
SDL_LDFLAGS := -framework SDL2 -F /Library/Frameworks -I /Library/Frameworks/SDL2.framework/Headers
else
SDL_CFLAGS := -I$(MINGDIR)/include/SDL2 -Dmain=SDL_main
SDL_LDFLAGS := -lSDL2main -lSDL2
endif
else
SDL_CFLAGS := $(shell $(SDL2_CONFIG) --cflags)
ifeq ($(shell expr $(STATIC) \>= 1), 1)
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --static-libs)
else
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs)
endif
endif
CFLAGS += $(SDL_CFLAGS)
LIBS += $(SDL_LDFLAGS)
endif
ifeq ($(BACKEND),mixer_sdl2)
SOURCES += simsys_s2.cc
ifeq ($(SDL2_CONFIG),)
ifeq ($(OSTYPE),mac)
SDL_CFLAGS := -F /Library/Frameworks -I/Library/Frameworks/SDL2.framework/Headers
SDL_LDFLAGS := -framework SDL2 -F /Library/Frameworks -I /Library/Frameworks/SDL2.framework/Headers
else
SDL_CFLAGS := -I$(MINGDIR)/include/SDL2 -Dmain=SDL_main
SDL_LDFLAGS := -lSDL2main -lSDL2
endif
else
SOURCES += sound/sdl_mixer_sound.cc
SOURCES += music/sdl_midi.cc
SDL_CFLAGS := $(shell $(SDL2_CONFIG) --cflags)
ifeq ($(shell expr $(STATIC) \>= 1), 1)
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --static-libs)
else
SDL_LDFLAGS := $(shell $(SDL2_CONFIG) --libs)
endif
endif
CFLAGS += $(SDL_CFLAGS)
LIBS += $(SDL_LDFLAGS) -lSDL2_mixer
endif
ifeq ($(BACKEND),mixer_sdl)
SOURCES += simsys_s.cc
SOURCES += sound/sdl_mixer_sound.cc
SOURCES += music/sdl_midi.cc
ifeq ($(SDL_CONFIG),)
SDL_CFLAGS := -I$(MINGDIR)/include/SDL -Dmain=SDL_main
SDL_LDFLAGS := -lmingw32 -lSDLmain -lSDL
else
SDL_CFLAGS := $(shell $(SDL_CONFIG) --cflags)
SDL_LDFLAGS := $(shell $(SDL_CONFIG) --libs)
endif
CFLAGS += $(SDL_CFLAGS)
LIBS += $(SDL_LDFLAGS) -lSDL_mixer
endif
ifeq ($(BACKEND),posix)
SOURCES += simsys_posix.cc
SOURCES += music/no_midi.cc
SOURCES += sound/no_sound.cc
endif
CFLAGS += -DCOLOUR_DEPTH=$(COLOUR_DEPTH)
ifeq ($(OSTYPE),mingw)
SOURCES += simres.rc
WINDRES ?= windres
endif
CCFLAGS += $(CFLAGS)
CXXFLAGS += $(CFLAGS)
BUILDDIR ?= build/$(CFG)
PROGDIR ?= $(BUILDDIR)
PROG ?= sim
include common.mk
ifeq ($(OSTYPE),mac)
include OSX/osx.mk
endif
.PHONY: makeobj
makeobj:
$(Q)$(MAKE) -e -C makeobj FLAGS="$(FLAGS)"