mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-23 15:52:55 +01:00
12 lines
247 B
Makefile
Executable File
12 lines
247 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
BUILDDIR=build_dir
|
|
|
|
extra_flags := $(if $(filter i386,$(DEB_HOST_ARCH)),-DLAUNCHPAD_BUILD=on,-DLAUNCHPAD_BUILD=on -DUSE_MMAP=on -DDISABLE_RCT2=on)
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -a -- $(extra_flags)
|
|
|
|
%:
|
|
dh $@
|