summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 6904b1cb6adf66bc55173d863e9bb4f5dd6c6d95 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed

%:
	dh $@ --with gnome

override_dh_missing:
	dh_missing --fail-missing
bgstack15