#!/usr/bin/make -f # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 CURDIR = $(shell pwd) # 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 ###ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) ### CFLAGS += -O0 ###else ### CFLAGS += -O2 ###endif config.status: patch-stamp configure dh_testdir ./configure --prefix=/usr COIN_SKIP_PROJECTS='Ipopt' CFLAGS="$(CFLAGS)" build: build-stamp build-stamp: config.status dh_testdir $(MAKE) touch $@ clean: clean-patched unpatch clean-patched: dh_testdir dh_testroot rm -f build-stamp [ ! -f Makefile ] || $(MAKE) distclean # Fixing a bug in distclean target. rm -f Bcp/test/BAC/bac.lp \ Bcp/test/BAC/bac.mps \ Bcp/test/BAC/bac.pdf \ Bcp/test/BAC/bb.par rm -rf Bcp/test/BAC/include \ Bcp/test/BAC/LP \ Bcp/test/BAC/Member \ Bcp/test/BAC/TM rm -f OS/src/version.txt dh_clean -X.orig patch-stamp: dpatch apply-all --verbose dpatch cat-all >patch-stamp unpatch: dpatch deapply-all rm -rf patch-stamp debian/patched install: build dh_testdir dh_testroot dh_clean -k -X.orig dh_installdirs $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_install --list-missing -X.txt -XREADME -XAUTHORS -XLICENSE #dh_link #dh_strip #dh_compress #dh_fixperms #dh_makeshlibs #dh_installdeb #dh_shlibdeps #dh_gencontrol #dh_md5sums #dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install unpatch clean-patched