1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/usr/bin/make -f LSB_CS = $(shell lsb_release -cs) ifeq ($(LSB_CS),lucid) COMPRESSION = -- -z9 -Zgzip else COMPRESSION = -- -z9 -Zxz endif override_dh_autoreconf: cd I-Nex && autoreconf -i override_dh_auto_configure: dh_auto_configure --sourcedirectory=I-Nex override_dh_builddeb: dh_builddeb $(COMPRESSION) override_dh_fixperms: dh_fixperms %: dh $@ --with autoreconf |