diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-23 21:38:03 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-23 21:38:03 +0000 |
commit | 360aca433d51a01ddd748b8606c6c288bdb2f7fc (patch) | |
tree | 0143de64029b4ab8984a0791dbffccdf5be9fd43 /win32 | |
parent | 0a6a0d524e3a6171ed37d842c0e1375270987314 (diff) | |
download | perl-360aca433d51a01ddd748b8606c6c288bdb2f7fc.tar.gz |
add Pod-Parser-1.08 (verbatim module =include tests elided owing
to size and better maintainability)
p4raw-id: //depot/perl@3129
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 3 | ||||
-rw-r--r-- | win32/makefile.mk | 3 | ||||
-rw-r--r-- | win32/pod.mak | 12 |
3 files changed, 17 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile index 7daffb3d34..49271f27cd 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -337,6 +337,9 @@ UTILS = \ ..\pod\pod2latex \ ..\pod\pod2man \ ..\pod\pod2text \ + ..\pod\pod2usage \ + ..\pod\podchecker \ + ..\pod\podselect \ ..\x2p\find2perl \ ..\x2p\s2p \ bin\runperl.pl \ diff --git a/win32/makefile.mk b/win32/makefile.mk index 574fa6aa82..32056a9d33 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -429,6 +429,9 @@ UTILS = \ ..\pod\pod2latex \ ..\pod\pod2man \ ..\pod\pod2text \ + ..\pod\pod2usage \ + ..\pod\podchecker \ + ..\pod\podselect \ ..\x2p\find2perl \ ..\x2p\s2p \ bin\runperl.pl \ diff --git a/win32/pod.mak b/win32/pod.mak index e5dd640e54..b1a1b9c56a 100644 --- a/win32/pod.mak +++ b/win32/pod.mak @@ -1,4 +1,5 @@ -CONVERTERS = pod2html pod2latex pod2man pod2text checkpods +CONVERTERS = pod2html pod2latex pod2man pod2text checkpods \ + pod2usage podchecker podselect HTMLROOT = / # Change this to fix cross-references in HTML POD2HTML = pod2html \ @@ -312,6 +313,15 @@ pod2text: pod2text.PL ../lib/Config.pm checkpods: checkpods.PL ../lib/Config.pm $(PERL) -I ../lib checkpods.PL +pod2usage: pod2usage.PL ../lib/Config.pm + $(PERL) -I ../lib pod2usage.PL + +podchecker: podchecker.PL ../lib/Config.pm + $(PERL) -I ../lib podchecker.PL + +podselect: podselect.PL ../lib/Config.pm + $(PERL) -I ../lib podselect.PL + compile: all $(REALPERL) -I../lib ../utils/perlcc -regex 's/$$/.exe/' pod2latex pod2man pod2text checkpods -prog -verbose dcf -log ../compilelog; |