blob: c3d7b43b53e424ec3131c760339f50edc620f969 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
export BARRIER_VERSION_STAGE=Release
%:
dh $@ --builddirectory=builddir
override_dh_auto_configure:
dh_auto_configure -- -DBARRIER_REVISION=00000000
|