#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

export TOPDIR=$(CURDIR)
export CFG=debug

# Don't treat format-security as an error, caused build failure.
# Also link libm for cos() and related functions.
export DEB_CFLAGS_MAINT_APPEND=-Wno-error=format-security -lm -DNDEBUG

include /usr/share/dpkg/architecture.mk
include /usr/share/dpkg/pkg-info.mk

UPSTREAM_VERSION = $(shell echo $(DEB_VERSION_UPSTREAM) | sed -e 's/\+.*//')

%:
	dh $@

override_dh_auto_clean:
	if [ -e config/common.mak ]; then \
		dh_auto_clean ; \
	fi

override_dh_auto_configure:
	dh_auto_configure -- \
		 --libdir=$(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH) \
		 --with-expat=yes \
		 --with-expatinc=/usr/include \
		 --with-expatlib=-lexpat \
		 --with-zlib=yes \
		 --with-zlibinc=/usr/include \
		 --with-zliblib=-lz

override_dh_auto_build:
	dh_auto_build --max-parallel=1

override_dh_auto_install:
	dh_auto_install -- prefix=$(CURDIR)/debian/tmp/usr

	$(RM) $(CURDIR)/debian/tmp/usr/lib/ogdi/libskeleton.so

execute_after_dh_install:
	sed -i -e 's@$(CURDIR)/debian/tmp@@g' \
		debian/*/usr/bin/ogdi-config \
		debian/*/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig/ogdi.pc

override_dh_makeshlibs:
	dh_makeshlibs -- -v$(UPSTREAM_VERSION)
