#!/usr/bin/make -f DH_VERBOSE = 1 DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) CFLAGS += -D_LARGE_FILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 %: ifeq (mipsel,$(findstring mipsel,$(DEB_HOST_ARCH))) dh $@ --no-parallel else ifeq (mips64el,$(findstring mips64el,$(DEB_HOST_ARCH))) dh $@ --no-parallel else dh $@ endif override_dh_auto_clean: # only try to run dh_auto_clean if configure has been run test -f Makefile.conf && dh_auto_clean || true override_dh_auto_configure: ./configure \ --LDFLAGS='$(LDFLAGS)' \ --CFLAGS='$(CFLAGS) $(CPPFLAGS)' \ \ --symbols \ --prefix=/usr \ \ --all=disable \ --buildin-script \ --buildin-diag_rnd \ --buildin-lib_gensexpr \ --buildin-hid_batch \ --buildin-lib_portynet \ --buildin-lib_exp_text \ --buildin-import_pixmap_pnm \ --plugin-lib_hid_gl \ --plugin-hid_gtk2_gdk \ --plugin-lib_wget \ --plugin-lib_gtk4_common \ --plugin-lib_hid_common \ --plugin-hid_gtk2_gl \ --plugin-lib_gtk2_common \ --plugin-import_pixmap_gd \ --plugin-hid_lesstif \ --plugin-hid_gtk4_gl \ --plugin-irc \ --plugin-lib_exp_pixmap \