#!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) CFLAGS = -Wall -g CXXFLAGS = -Wall -g PNGICON = lostirc.png XPMICON = $(PNGICON:.png=.xpm) ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 CXXFLAGS += -O0 else CFLAGS += -O2 CXXFLAGS += -O2 endif configure: configure-stamp configure-stamp: dh_testdir rm -f po/stamp-po rm -f po/fr.gmo rm -f po/da.gmo CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --disable-debug touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir $(MAKE) convert $(PNGICON) -resize 32x32 xpm:$(XPMICON) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp rm -f config.log rm -f po/stamp-po [ ! -f Makefile ] || $(MAKE) distclean rm -f $(XPMICON) dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs $(MAKE) install DESTDIR=$(CURDIR)/debian/lostirc binary-indep: build install binary-arch: build install dh_testdir dh_testroot dh_installdocs dh_installmenu dh_installchangelogs ChangeLog dh_install $(XPMICON) /usr/share/pixmaps dh_link 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 install configure