22 lines
518 B
Makefile
Executable File
22 lines
518 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
#export DH_VERBOSE=1
|
|
#export CFLAGS=" -O3 "
|
|
|
|
%:
|
|
dh $@ --with autotools-dev --parallel --builddirectory=debian/build
|
|
|
|
.PHONY: override_dh_auto_configure
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
--enable-vala --enable-gtk-doc --enable-debug --enable-install
|
|
|
|
.PHONY: override_dh_strip
|
|
override_dh_strip:
|
|
dh_strip --dbg-package=libhedera-dbg
|
|
|
|
# Overriden to avoid lintian warnings about postinst/postrm
|
|
.PHONY: override_dh_makeshlibs
|
|
override_dh_makeshlibs:
|
|
dh_makeshlibs --noscripts
|