File: rules

package info (click to toggle)
maypole 2.10-1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 472 kB
  • ctags: 108
  • sloc: perl: 1,345; makefile: 21
file content (29 lines) | stat: -rwxr-xr-x 548 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
25
26
27
28
29
#!/usr/bin/make -f

build : build-stamp

build-stamp : Makefile.PL
	perl Makefile.PL INSTALLDIRS=vendor
	$(MAKE) test
	touch build-stamp

binary : binary-arch binary-indep

binary-arch :

binary-indep : build-stamp
	dh_testroot
	$(MAKE) PREFIX=$(CURDIR)/debian/libmaypole-perl/usr install
	dh_perl
	dh_installchangelogs Changes
	dh_installdocs
	dh_compress
	dh_fixperms
	dh_gencontrol
	dh_builddeb

clean : 
	if [ -f Makefile ]; then $(MAKE) clean; fi
	dh_clean Makefile Makefile.old build-stamp

.PHONY : build binary binary-arch binary-dep clean