File: Makefile.am

package info (click to toggle)
imvirt 0.9.6-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,324 kB
  • ctags: 199
  • sloc: perl: 2,778; sh: 802; ansic: 316; makefile: 63
file content (24 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SUBDIRS = helper man perl dist

AUTOMAKE_OPTIONS = 
	1.9
	dist-bzip2

BUILT_SOURCES = perl

bin_SCRIPTS = imvirt
sbin_SCRIPTS = imvirt-report

install-exec-local:
	[ ! -f perl/Makefile ] || ( cd perl && $(MAKE) install )

clean-local:
	[ ! -f perl/Makefile ] || ( cd perl && $(MAKE) realclean )

perl: perl/Makefile
	cd perl && $(MAKE)

perl/Makefile: perl/Makefile.PL
	cd perl && perl Makefile.PL PREFIX=$(prefix) INSTALLDIRS=vendor

.PHONY: perl