14 lines
348 B
Makefile
Executable file
14 lines
348 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
%:
|
|
dh ${@}
|
|
|
|
execute_after_dh_auto_install:
|
|
# removing unused files
|
|
rm -f debian/tmp/usr/lib/*/*.la
|
|
rm -f debian/tmp/usr/share/doc/*/CHANGES
|
|
rm -f debian/tmp/usr/share/doc/*/COPYING
|
|
rm -f debian/tmp/usr/share/doc/*/COPYING.LESSER
|
|
rm -f debian/tmp/usr/share/doc/*/README.md
|