1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#!/usr/bin/make -f
# Debhelper rules file for spiped, the secure pipe daemon.
# Aim for the top, adapt if anything should break on the buildds.
DEB_BUILD_MAINT_OPTIONS= hardening=+all
DEB_CFLAGS_MAINT_APPEND= -pipe -Wall -W -std=c99 -pedantic -Wbad-function-cast \
-Wcast-align -Wcast-qual -Wchar-subscripts -Winline \
-Wmissing-prototypes -Wnested-externs -Wpointer-arith \
-Wredundant-decls -Wshadow -Wstrict-prototypes -Wwrite-strings
ifneq (,$(filter werror,$(DEB_BUILD_OPTIONS)))
DEB_CFLAGS_MAINT_APPEND+= -Werror
endif
# Enable large file support, not that it really matters
LFS_CPPFLAGS:= $(shell getconf LFS_CFLAGS 2>/dev/null || echo "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64")
LFS_LDFLAGS:= $(shell getconf LFS_LDFLAGS 2>/dev/null || true)
DEB_CPPFLAGS_MAINT_APPEND+= ${LFS_CPPFLAGS}
DEB_LDFLAGS_MAINT_APPEND+= ${LFS_LDFLAGS}
export DEB_BUILD_MAINT_OPTIONS DEB_CPPFLAGS_MAINT_APPEND DEB_CFLAGS_MAINT_APPEND DEB_LDFLAGS_MAINT_APPEND
%:
dh $@
override_dh_auto_install:
dh_auto_install -- BINDIR=/usr/bin MAN1DIR=/usr/share/man/man1
|