File: rules

package info (click to toggle)
pinentry 0.7.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,928 kB
  • ctags: 1,129
  • sloc: ansic: 8,459; sh: 3,662; cpp: 2,531; makefile: 182
file content (24 lines) | stat: -rwxr-xr-x 606 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

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk

DEB_CONFIGURE_EXTRA_FLAGS := --disable-dependency-tracking --disable-rpath \
	--enable-pinentry-curses --enable-pinentry-qt --enable-pinentry-gtk --enable-pinentry-gtk2 \
	LDFLAGS='-Wl,--as-needed'
DEB_INSTALL_CHANGELOGS_ALL := ChangeLog
DEB_INSTALL_DOCS_ALL := NEWS AUTHORS
DEB_DH_INSTALL_SOURCEDIR := debian/tmp


pre-build:: debian/stamp-custom-prepare

debian/stamp-custom-prepare:
	dh_testdir
	make -C debian all
	touch $@


clean::
	rm -f debian/stamp-custom-prepare
	make -C debian clean