diff DOCS/xml/Makefile.inc @ 11841:67550c3b21a5

Make the build system print everything it does.
author diego
date Sat, 24 Jan 2004 22:31:11 +0000
parents 19919e913e3d
children b09020364bfb
line wrap: on
line diff
--- a/DOCS/xml/Makefile.inc	Sat Jan 24 17:13:31 2004 +0000
+++ b/DOCS/xml/Makefile.inc	Sat Jan 24 22:31:11 2004 +0000
@@ -37,48 +37,48 @@
 html-single: $(HTMLFILE)
 
 $(HTMLDIR)/index.html: main.xml $(CHUNK_XSL_DEPS)
-	@if test "$(HTMLDIR)" = "" ; then \
+	if test "$(HTMLDIR)" = "" ; then \
 		echo "Error: HTMLDIR not set!!!"; \
 		echo "Typically this means, that you've run make from a subdir of DOCS/xml."; \
 		echo "Don't do this!"; \
 		false; \
 	fi
-	@if test "$(USE_SYMLINKS)" = "yes" ; then \
+	if test "$(USE_SYMLINKS)" = "yes" ; then \
 		for file in ../en/*.xml ; do \
 		if ! test -r `basename $$file` ; then \
 			ln -s $$file `basename $$file` ; \
 		fi ; \
 		done ; \
 	fi
-	@-rm -f $(HTMLDIR)/*
-	@../xmllint.sh $<
-	@cp -f $(HTML_STYLESHEET) $(HTMLDIR)/
-	@../xsltproc.sh $(HTMLDIR)/ $(HTML_CHUNK_XSL) $<
+	-rm -f $(HTMLDIR)/*
+	../xmllint.sh $<
+	cp -f $(HTML_STYLESHEET) $(HTMLDIR)/
+	../xsltproc.sh $(HTMLDIR)/ $(HTML_CHUNK_XSL) $<
 
 $(HTMLFILE): main.xml $(XSL_DEPS)
-	@if test "$(HTMLFILE)" = "" ; then \
+	if test "$(HTMLFILE)" = "" ; then \
 		echo "Error: HTMLFILE not set!!!"; \
 		echo "Typically this means, that you've run make from a subdir of DOCS/xml."; \
 		echo "Don't do this!"; \
 		false; \
 	fi
-	@if test "$(USE_SYMLINKS)" = "yes" ; then \
+	if test "$(USE_SYMLINKS)" = "yes" ; then \
 		for file in ../en/*.xml ; do \
 		if ! test -r `basename $$file` ; then \
 			ln -s $$file `basename $$file` ; \
 		fi ; \
 		done ; \
 	fi
-	@-rm -f $(HTMLFILE)
-	@../xmllint.sh $<
-	@cp -f $(HTML_STYLESHEET) `dirname $(HTMLFILE)`
-	@../xsltproc.sh $(HTMLFILE) $(HTML_SINGLE_XSL) $<
+	-rm -f $(HTMLFILE)
+	../xmllint.sh $<
+	cp -f $(HTML_STYLESHEET) `dirname $(HTMLFILE)`
+	../xsltproc.sh $(HTMLFILE) $(HTML_SINGLE_XSL) $<
 
 ../html-chunk.xsl ../html-single.xsl main.xml:
 	cd .. && sh configure
 
 distclean:
-	@rm -f main.xml
-	@if test "$(USE_SYMLINKS)" = "yes" ; then \
+	rm -f main.xml
+	if test "$(USE_SYMLINKS)" = "yes" ; then \
 		rm -f `find *.xml -type l`; \
 	fi