File: rules

package info (click to toggle)
fbdesk 1.4.1-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,496 kB
  • sloc: cpp: 11,046; sh: 8,775; makefile: 188
file content (24 lines) | stat: -rwxr-xr-x 436 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/make -f

PACKAGE = fbdesk
PKGDIR	= $(shell pwd)/debian/$(PACKAGE)

export DEB_BUILD_MAINT_OPTIONS	 = hardening=+all
export DEB_CXXFLAGS_MAINT_APPEND = -Wall -pedantic -ffunction-sections
export DEB_LDFLAGS_MAINT_APPEND	 = -Wl,--as-needed

man:
	$(MAKE) -C debian -f pod2man.mk \
	PACKAGE=$(PACKAGE) \
	PODCENTER="WM Utils" \
	makeman

override_dh_auto_configure: man
	dh_auto_configure

%:
	dh $@

.PHONY: man

# End of file