File: rules

package info (click to toggle)
libcgi-application-plugin-authentication-perl 0.23%2B~cs0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,144 kB
  • sloc: perl: 5,586; makefile: 27; javascript: 6
file content (34 lines) | stat: -rwxr-xr-x 848 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
#!/usr/bin/make -f

%:
	dh $@

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

override_dh_auto_configure:
	dh_auto_configure
	for COMPONENT in driver-cdbi driver-dbic; do \
		dh_auto_configure --sourcedirectory=$(CURDIR)/$${COMPONENT}; \
	done

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

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

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