diff options
author | Holger Paradies <retabell@gmx.de> | 2025-06-15 11:50:44 +0200 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2025-06-15 15:20:44 +0200 |
commit | 8865fce4873a7476081e6d34bcb817de85f105fc (patch) | |
tree | 7e801b19f3bd9f9f4b6921e1ca418d0062638ce3 /debian/rules | |
parent | c01d462c3c0bc0c3aefa92bfde34c9754d08907f (diff) | |
download | etcskel-kanotix-8865fce4873a7476081e6d34bcb817de85f105fc.zip etcskel-kanotix-8865fce4873a7476081e6d34bcb817de85f105fc.tar.gz |
Version 2.0.45
update to debhelper13
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index e6192f6..f1d1d25 100755 --- a/debian/rules +++ b/debian/rules @@ -1,3 +1,26 @@ #!/usr/bin/make -f -include /usr/share/cdbs/1/rules/debhelper.mk +# See debhelper(7) (uncomment to enable). +# Output every command that modifies files on the build system. +#export DH_VERBOSE = 1 + + +# See FEATURE AREAS in dpkg-buildflags(1). +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# See ENVIRONMENT in dpkg-buildflags(1). +# Package maintainers to append CFLAGS. +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# Package maintainers to append LDFLAGS. +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +%: + dh $@ + + +# dh_make generated override targets. +# This is an example for Cmake (see <https://bugs.debian.org/641051>). +#override_dh_auto_configure: +# dh_auto_configure -- \ +# -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) |