File: Makefile.am

package info (click to toggle)
libapreq2-perl 2.04-dev-1sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,700 kB
  • ctags: 1,508
  • sloc: sh: 8,103; ansic: 5,557; perl: 2,842; cpp: 1,052; makefile: 234
file content (43 lines) | stat: -rw-r--r-- 545 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
36
37
38
39
40
41
42
43
EXTRA_DIST = perl

dist-hook:

perl_config:
	cd perl; @PERL@ ../../build/xsbuilder.pl run

perl/Makefile: perl/xsbuilder perl/Makefile.PL
	cd perl; @PERL@ Makefile.PL -apxs @APACHE2_APXS@

perl_glue: perl/Makefile
	cd perl; $(MAKE)

perl_test: perl/Makefile
	cd perl; $(MAKE) test

perl_install:
	cd perl; $(MAKE) install

perl_clean:
	-cd perl; $(MAKE) clean

if BUILD_PERL_GLUE

all-local: perl_glue

install-exec-local: perl_install

clean-local: perl_clean

test: perl_test

else

all-local:

install-exec-local:

clean-local:

test:

endif