mirror of
https://github.com/FairRootGroup/FairLogger.git
synced 2025-10-13 08:41:12 +00:00
16 lines
430 B
Makefile
Executable File
16 lines
430 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# output every command that modifies files on the build system.
|
|
export DH_VERBOSE = 1
|
|
|
|
%:
|
|
dh $@ --builddirectory=build
|
|
|
|
override_dh_auto_configure:
|
|
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_TESTING=OFF -DUSE_BOOST_PRETTY_FUNCTION=ON -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
override_dh_auto_build:
|
|
cd build && make
|
|
|
|
override_dh_auto_install:
|
|
cd build && make install DESTDIR=../debian/tmp
|