aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-07-22 11:50:14 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-07-22 11:50:14 +0000
commitfbb5e453676d364cd86289145d8ce4e2f42f765f (patch)
tree919b31360de615e1ef121ffab77ee3e123e95737 /Makefile
parent3a1ba46dd98c8113dde2b264d03226d8922e0209 (diff)
Added obfuscate.sh to test it in production mode.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6568 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 625612e4d..6e35ef8c3 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,10 @@ lfs:
*.html
for filename in `find $(BASEDIR) -name "*.html"`; do \
+ sh obfuscate.sh $$filename; \
+ done;
+
+ for filename in `find $(BASEDIR) -name "*.html"`; do \
tidy -config tidy.conf $$filename; \
true; \
done;
@@ -56,6 +60,8 @@ nochunks:
--output $(BASEDIR)/$(NOCHUNKS_OUTPUT) \
stylesheets/lfs-nochunks.xsl index.xml
+ sh obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT)
+
tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true
sed -i -e "s@text/html@application/xhtml+xml@g" \