mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-17 13:02:27 +01:00
14 lines
197 B
Makefile
Executable File
14 lines
197 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
BUILDDIR=build_dir
|
|
|
|
build:
|
|
scripts/linux/install.sh
|
|
mkdir $(BUILDDIR)
|
|
cd $(BUILDDIR); cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
|
|
make -C $(BUILDDIR)
|
|
touch build
|
|
|
|
%:
|
|
dh $@
|