X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=manual%2FMakefile;h=19085e10198c5ff62d46a31e0936ba9f429ccf42;hb=6583376d0532d2b86bae7604e5982b4859be73c0;hp=76965262c2a5e0d39dd4c6adbb8067b36e07d69e;hpb=b8a6f94325c46a4129922ad3dbb61ca30761299b;p=ardour.git diff --git a/manual/Makefile b/manual/Makefile index 76965262c2..19085e1019 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -10,6 +10,9 @@ XSLTPROC ?= xsltproc #PWD = $(shell pwd) help:: + @echo " WARNING: The Ardour Scons build script must be run before " + @echo " building the manual. " + @echo @echo " The Following is a list of supported build targets:" @echo @echo " html:" @@ -48,7 +51,7 @@ test:: .PHONY : test format:: test - @for file in `find xml/*.xml`; \ + @for file in `find xml/ -name '*.xml' -type f`; \ do xmlformat/xmlformat.pl --in-place --backup .bak \ --config-file xmlformat/xmlformat-ardour.conf $$file; \ done @@ -57,6 +60,8 @@ format:: test clean:: @rm -rf $(OUTDIR) + @for file in `find xml/ -name '*.bak' -type f`; do \ + rm $$file; done .PHONY : clean