diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-10-05 07:32:21 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-10-05 13:48:40 +0100 |
commit | cde5101a7be11e27127dc4c214d749bb2cc993e6 (patch) | |
tree | 2025e59f77db901cb47c4099f3761f2978ce1de3 /win32 | |
parent | bf07e08f68b96c7832e17dd5eb4eb32618be88d2 (diff) | |
download | perl-cde5101a7be11e27127dc4c214d749bb2cc993e6.tar.gz |
Move pod2usage.PL, podchecker.PL, podselect.PL into cpan/Pod-Parser/scripts
Let ExtUtils::MakeMaker deal with running these extraction scripts, rather than
repeating the logic in (at least) 5 places.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 6 | ||||
-rw-r--r-- | win32/makefile.mk | 6 | ||||
-rw-r--r-- | win32/pod.mak | 17 |
3 files changed, 6 insertions, 23 deletions
diff --git a/win32/Makefile b/win32/Makefile index a4eae3c44b..c6222ecac3 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -615,9 +615,6 @@ UTILS = \ ..\pod\pod2html \ ..\pod\pod2man \ ..\pod\pod2text \ - ..\pod\pod2usage \ - ..\pod\podchecker \ - ..\pod\podselect \ ..\x2p\find2perl \ ..\x2p\psed \ ..\x2p\s2p \ @@ -1202,8 +1199,7 @@ distclean: realclean perlriscos.pod perlsolaris.pod perlsymbian.pod perltoc.pod \ perltru64.pod perltw.pod perluniprops.pod perluts.pod \ perlvmesa.pod perlvos.pod perlwin32.pod \ - pod2html pod2man pod2text pod2usage \ - podchecker podselect + pod2html pod2man pod2text -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \ perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \ xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data diff --git a/win32/makefile.mk b/win32/makefile.mk index a48cadefa0..e6973eca53 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -779,9 +779,6 @@ UTILS = \ ..\pod\pod2html \ ..\pod\pod2man \ ..\pod\pod2text \ - ..\pod\pod2usage \ - ..\pod\podchecker \ - ..\pod\podselect \ ..\x2p\find2perl \ ..\x2p\psed \ ..\x2p\s2p \ @@ -1566,8 +1563,7 @@ distclean: realclean perlriscos.pod perlsolaris.pod perlsymbian.pod perltoc.pod \ perltru64.pod perltw.pod perluniprops.pod perluts.pod \ perlvmesa.pod perlvos.pod perlwin32.pod \ - pod2html pod2man pod2text pod2usage \ - podchecker podselect + pod2html pod2man pod2text -cd ..\utils && del /f h2ph splain perlbug pl2pm c2ph pstruct h2xs \ perldoc perlivp dprofpp libnetcfg enc2xs piconv cpan *.bat \ xsubpp instmodsh prove ptar ptardiff cpanp-run-perl cpanp cpan2dist shasum corelist config_data diff --git a/win32/pod.mak b/win32/pod.mak index d781e22957..d78a35129d 100644 --- a/win32/pod.mak +++ b/win32/pod.mak @@ -1,5 +1,4 @@ -CONVERTERS = pod2html pod2man pod2text \ - pod2usage podchecker podselect +CONVERTERS = pod2html pod2man pod2text HTMLROOT = / # Change this to fix cross-references in HTML POD2HTML = pod2html \ @@ -7,6 +6,7 @@ POD2HTML = pod2html \ --podroot=.. --podpath=pod:lib:ext:vms \ --libpods=perlfunc:perlguts:perlvar:perlrun:perlop POD2LATEX = ../cpan/Pod-LaTeX/pod2latex +PODCHECKER = ../cpan/Pod-Parser/podchecker all: $(CONVERTERS) html @@ -632,9 +632,9 @@ realclean: clean distclean: realclean -check: podchecker +check: $(PODCHECKER) @echo "checking..."; \ - $(PERL) -I../lib podchecker $(POD) + $(PERL) -I../lib $(PODCHECKER) $(POD) # Dependencies. pod2html: pod2html.PL ../lib/Config.pm @@ -645,12 +645,3 @@ pod2man: pod2man.PL ../lib/Config.pm pod2text: pod2text.PL ../lib/Config.pm $(PERL) -I ../lib $(ICWD) pod2text.PL - -pod2usage: pod2usage.PL ../lib/Config.pm - $(PERL) -I ../lib $(ICWD) pod2usage.PL - -podchecker: podchecker.PL ../lib/Config.pm - $(PERL) -I ../lib $(ICWD) podchecker.PL - -podselect: podselect.PL ../lib/Config.pm - $(PERL) -I ../lib $(ICWD) podselect.PL |