#!/usr/bin/make -f #export DH_VERBOSE=1 CFLAGS = -Wall -g -fPIC ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif build: dh_testdir $(MAKE) CFLAGS="$(CFLAGS)" clean: dh_testdir dh_testroot $(MAKE) clean dh_clean binary-indep: build binary-arch: build dh_testdir dh_testroot dh_installdirs dh_installdocs $(MAKE) install DESTDIR=debian/libpam-itkacl dh_installchangelogs dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary