From fbb5e453676d364cd86289145d8ce4e2f42f765f Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Fri, 22 Jul 2005 11:50:14 +0000 Subject: 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 --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 625612e4d..6e35ef8c3 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,10 @@ lfs: cd $(BASEDIR)/; sed -i -e "s@../images@images@g" \ *.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; \ @@ -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" \ -- cgit v1.2.3-54-g00ecf