#!/usr/bin/make -f
### See debhelper(7) (uncomment to enable)
### This is a autogenerated template for debian/rules.
### You must remove unused comment lines for the released package.
###
### Output every command that modifies files on the build system.
#DH_VERBOSE = 1
###
### Define DEB_HOST_* and  DEB_BUILD_* variables using
### dpkg-architecture(1) if they are used in this file. E.g.: 
###DEB_HOST_MULTIARCH = $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
###DEB_HOST_ARCH_OS = $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
###
### Copy some variable definitions from pkg-info.mk and vendor.mk
### under /usr/share/dpkg/ to here if they are useful.
###
### See FEATURE AREAS in dpkg-buildflags(1)
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
###
### See ENVIRONMENT in dpkg-buildflags(1)
### Package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
### Package maintainers to append LDFLAGS
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

### main packaging script based on dh7 syntax
%:
	dh $@

### Alternatively
### support for -Wl,--as-needed to ltmain.sh with autoreconf -f -i
###override_dh_autoreconf:
###	dh_autoreconf --as-needed
###
### Set options for ./configure
###CONFIGURE_FLAGS = <options for ./configure>
###overrride_dh_configure:
###	dh_configure -- $(CONFIGURE_FLAGS)
###
### Do not install libtool archive, python .pyc .pyo
override_dh_install:
	dh_install --list-missing -X.la -X.pyc -X.pyo



