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@ @PERL_OPTS@ Makefile.PL -apxs @APACHE2_APXS@ @MM_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
|