mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-23 19:02:04 -05:00
146dda2f3e
This enables creating .deb packages for easy installation on Ubuntu and Debian.
13 lines
197 B
Makefile
Executable file
13 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 $@
|