mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
2debc68ee9
The build hosts generate -dbgsym packages automatically with newer versions of debhelper.
17 lines
551 B
Makefile
Executable file
17 lines
551 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
# Setting the build system is still required, because otherwise the GNUmakefile gets picked up
|
|
override_dh_auto_configure:
|
|
dh_auto_configure --buildsystem=cmake
|
|
|
|
# On CMake 3.5 (and possibly 3.6), the test target does not pick up its dependencies properly
|
|
# Build fish_tests/tests_buildroot_target by hand (remove this once Ubuntu Xenial is out of support)
|
|
override_dh_auto_build:
|
|
dh_auto_build -- all fish_tests tests_buildroot_target
|