blob: 3c670ce518e3f46b9b7f0c3d4539173d873c975e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make -f
# -*- makefile -*-
# Avoid overlinking and reduce library dependencies.
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
%:
dh $@ --parallel --with autoreconf
.PHONY: override_dh_auto_configure
override_dh_auto_configure:
SRCLIB=/usr/share/urweb dh_auto_configure
.PHONY: override_dh_builddeb
override_dh_builddeb:
dh_builddeb -- -Zxz -z9
|