diff options
author | reinelt <> | 2005-05-06 05:36:59 +0000 |
---|---|---|
committer | reinelt <> | 2005-05-06 05:36:59 +0000 |
commit | 2b068848691202d26100cdf75c62c460313983ec (patch) | |
tree | fb295eb27941bbc9959886f37ae4cd240f4b5fa6 /documentation/Makefile | |
parent | 9e6200afe91ee60ab080c3a8c23e8630c22f4055 (diff) | |
download | lcd4linux-2b068848691202d26100cdf75c62c460313983ec.tar.gz |
[lcd4linux @ 2005-05-06 05:36:58 by reinelt]
removed documentation again :-(
Diffstat (limited to '')
-rw-r--r-- | documentation/Makefile | 32 | ||||
-rw-r--r-- | documentation/Makefile.generic | 59 |
2 files changed, 0 insertions, 91 deletions
diff --git a/documentation/Makefile b/documentation/Makefile deleted file mode 100644 index 47425e4..0000000 --- a/documentation/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -REP= lcd4linux drivers plugins - -default: makefiles html - true - -makefiles: - @for i in $(REP) ; do \ - (cd $$i && ln -sf ../Makefile.generic Makefile) ; \ - done - -cleanmakefiles: - @for i in $(REP) ; do \ - rm -f $$i/Makefile ; \ - done - -totalclean: - @for i in $(REP) ; do \ - (cd $$i && make clean ; rm Makefile) ; \ - done - rm -rf HTML - -#catalog: catalogue.xml xsl/catalogue.xsl -# test -d catalog || mkdir catalog -# xsltproc --param dir \'$(PWD)\' \ -# --param odir \'$(PWD)/catalog\' \ -# xsl/catalogue.xsl catalogue.xml >catalog/index.html -# cp charte/default/default.css catalog/ - -%: - @for i in $(REP) ; do \ - (cd $$i && make $@) ; \ - done diff --git a/documentation/Makefile.generic b/documentation/Makefile.generic deleted file mode 100644 index 2519f22..0000000 --- a/documentation/Makefile.generic +++ /dev/null @@ -1,59 +0,0 @@ -# Path -DIR = $(notdir $(PWD)) -OUTPUT = ../HTML - -ifeq "$(DIR)" "lcd4linux" - DIR = -endif - -ifeq "$(DIR)" "" - XSLTPROC = xsltproc -else - XSLTPROC = xsltproc --stringparam class $(DIR) --stringparam root "../" -endif - -XMLVALID = xmllint --noout --valid - -NAMES=$(shell find . -name "*.xml" -exec basename {} .xml \;) - -html: $(patsubst %.xml,%.html,$(wildcard *.xml)) -html-forced: $(patsubst %.xml,%.html-forced,$(wildcard *.xml)) - -%.html: %.xml %.xml-check output - $(XSLTPROC) $< > $(OUTPUT)/$(DIR)/$@ - -%.html-forced: %.xml output - $(XSLTPROC) $< > $(OUTPUT)/$(DIR)/$(patsubst %.xml,%.html,$<) - -check: $(patsubst %.xml, %.xml-check, $(wildcard *.xml)) - -%.xml-check: %.xml - @echo "*** Validation of $<" - $(XMLVALID) $< - -output: - test -d $(OUTPUT) || `mkdir $(OUTPUT); cp ../data/doc.css $(OUTPUT); cp -R ../data/images $(OUTPUT)` - test -d $(OUTPUT)/$(DIR) || mkdir $(OUTPUT)/$(DIR) - -clean: - rm -f $(OUTPUT)/$(DIR)/*.html - -clean-bak: - rm -f *~ *.bak - -help: - @echo -e "" - @echo -e "Usage :" - @echo -e "-------" - @echo -e "make or make html : builds all possible html pages from xml files" - @echo -e "make %.html : builds the %.html page from %.xml" - @echo -e "" - @echo -e "make html-forced : builds all possible html pages from xml files (no validity check)" - @echo -e "make %.html-forced : builds the %.html page from %.xml (no validity check)" - @echo -e "" - @echo -e "make check : checks the validity of all possible xml files" - @echo -e "make %.xml-check : checks the validity of %.xml" - @echo -e "" - @echo -e "make clean : deletes all generated html pages" - @echo -e "make clean-bak : deletes *~ and *.bak files" - @echo -e "" |