#!/usr/bin/make -f

PACKAGE = fspanel

include /usr/share/dpkg/buildflags.mk
CFLAGS	+= -Wall -pedantic
LDFLAGS += -Wl,--as-needed
export CFLAGS LDFLAGS

man:
	$(MAKE) -C debian -f pod2man.mk PACKAGE=$(PACKAGE) makeman

override_dh_auto_install:
	# Do nothing. See files debian/{install,manpages}

override_dh_installman: man
	dh_installman

%:
	dh $@

# End of file
