mirror of
https://github.com/shadowsocks/simple-obfs.git
synced 2026-02-09 01:59:16 +08:00
16 lines
337 B
Makefile
Executable File
16 lines
337 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
#export DH_VERBOSE = 1
|
|
|
|
# Security Hardening
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
override_dh_auto_configure:
|
|
# Whether to have stack-protector is decided by dpkg-buildflags.
|
|
# So --disable-ssp here should be safe.
|
|
# See Bug in parent project: #829498
|
|
dh_auto_configure -- \
|
|
--disable-ssp
|
|
|
|
%:
|
|
dh $@
|