#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# provide debian version number to the build system
export DEBIAN_PACKAGE_VERSION=$(shell dpkg-parsechangelog --show-field Version)

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

# enable hardening
export DEB_BUILD_HARDENING=1

# Make sure to NOT use any flags from environment and only use the standard
# debian build flags.
#
# include CPPFLAGS in CFLAGS, this is a cmake workaround found on
# https://wiki.debian.org/Hardening#Notes_for_packages_using_CMake
export CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
export CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) $(CPPFLAGS)
export CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) $(CPPFLAGS)
export LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)

%:
	dh $@
