File: rules

package info (click to toggle)
libcgi-application-plugin-devpopup-perl 1.08%2B~cs2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 240 kB
  • sloc: perl: 481; makefile: 27
file content (35 lines) | stat: -rwxr-xr-x 786 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
30
31
32
33
34
35
#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_clean:
	dh_auto_clean
	for COMPONENT in p q; do \
		dh_auto_clean --sourcedirectory=$(CURDIR)/$${COMPONENT}; \
	done

override_dh_auto_configure:
	# don't descend into subdirs
	dh_auto_configure -- DIR=
	for COMPONENT in p q; do \
		dh_auto_configure --sourcedirectory=$(CURDIR)/$${COMPONENT}; \
	done

override_dh_auto_build:
	dh_auto_build
	for COMPONENT in p q; do \
		dh_auto_build --sourcedirectory=$(CURDIR)/$${COMPONENT}; \
	done

override_dh_auto_test:
	dh_auto_test
	for COMPONENT in p q; do \
		PERL5LIB=$(CURDIR)/blib/lib dh_auto_test --sourcedirectory=$(CURDIR)/$${COMPONENT}; \
	done

override_dh_auto_install:
	dh_auto_install
	for COMPONENT in p q; do \
		dh_auto_install --sourcedirectory=$(CURDIR)/$${COMPONENT}; \
	done