Author: particle
Date: Fri Nov 4 13:25:04 2005
New Revision: 9785
Modified:
trunk/config/gen/makefiles/docs.in
Log:
undo docs makefile changes due to ms nmake portability issues
Modified: trunk/config/gen/makefiles/docs.in
==============================================================================
--- trunk/config/gen/makefiles/docs.in (original)
+++ trunk/config/gen/makefiles/docs.in Fri Nov 4 13:25:04 2005
@@ -9,10 +9,9 @@ PERL = ${perl}
RM_F = ${rm_f}
# Make directory; do not die if dir exists.
MKDIR = $(PERL) -e ${PQ}-d or mkdir $$_,0777 or die foreach @ARGV${PQ}
-NEW_PERLDOC = ${new_perldoc}
# long list of .pod files
-POD = $(patsubst %.ops,ops/%.pod,$(wildcard ../ops/*.ops))
+POD = ${pod}
#
# Targets
@@ -49,10 +48,3 @@ html:
html-clean:
$(PERL) -I../lib -MParrot::Distribution -e
"Parrot::Distribution->new->delete_html_docs"
-
-ops${slash}%.pod: ..${slash}ops${slash}%.ops
-ifeq ($(NEW_PERLDOC), 1)
- perldoc -ud $@ $<
-else
- perldoc -u $< < $@
-endif