File: Makefile.am

package info (click to toggle)
rapache 1.2.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,248 kB
  • sloc: sh: 18,629; ansic: 10,417; perl: 5,675; javascript: 2,800; makefile: 307
file content (43 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (4)
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_OPTS@

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