summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 52f0d21e0f847d49d2bc9ff929743289a0e1c9bb (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,-z,defs -Wl,--as-needed

%:
	dh $@ --with gnome

override_dh_missing:
	dh_missing --fail-missing
bgstack15