14 lines
380 B
Makefile
Executable file
14 lines
380 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/tinyframe/CHANGES
|
|
rm -f debian/tmp/usr/share/doc/tinyframe/COPYING
|
|
rm -f debian/tmp/usr/share/doc/tinyframe/COPYING.LESSER
|
|
rm -f debian/tmp/usr/share/doc/tinyframe/README.md
|