20 lines
479 B
Makefile
Executable File
20 lines
479 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
include /usr/share/dpkg/buildflags.mk
|
|
export DEB_CFLAGS_MAINT_APPEND = $(CPPFLAGS)
|
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
--localedir=\$${prefix}/share/locale \
|
|
--docdir=\$${prefix}share/doc \
|
|
--docsubdir=dvdisaster-doc/html
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- BUILDROOT=$(CURDIR)/debian/tmp
|