r143 als Version 1.1 zu tags hinzugefuegt
This commit is contained in:
parent
609b0db4c0
commit
19eed40acc
99 changed files with 10342 additions and 0 deletions
40
v1.1/doku/Makefile
Normal file
40
v1.1/doku/Makefile
Normal file
|
@ -0,0 +1,40 @@
|
|||
LATEX2HTMLPREFIX := -no_auto_link -split 0 -init_file ../_scripts/latex2html-init -no_navigation -no_subdir
|
||||
|
||||
TEX_FILES := $(patsubst %.lyx,%.tex,$(wildcard *.lyx))
|
||||
NEW_INDEXES := $(patsubst %.lyx,%.html,$(wildcard *.lyx))
|
||||
|
||||
ASC_FILES := $(wildcard *.asc)
|
||||
|
||||
CSS_BILDER = somerights20.png
|
||||
|
||||
.PHONY : clean css
|
||||
|
||||
all: $(NEW_INDEXES) css
|
||||
|
||||
css: $(CSS_BILDER)
|
||||
|
||||
$(CSS_BILDER):
|
||||
cd _bilder; cp $(CSS_BILDER) ..
|
||||
|
||||
$(TEX_FILES): %.tex: %.lyx
|
||||
lyx -e latex $*.lyx
|
||||
|
||||
$(NEW_INDEXES): %.html: %.tex $(ASC_FILES)
|
||||
latex2html $(LATEX2HTMLPREFIX) $*.tex
|
||||
-rm WARNINGS $*-labels.pl $*-internals.pl $*.css
|
||||
python ../_scripts/mod_html_files.py $@
|
||||
#rm $@.temp
|
||||
cat header.asc >> $@.temp
|
||||
cat nav.asc >> $@.temp
|
||||
cat $@ >> $@.temp
|
||||
cat footer.asc >> $@.temp
|
||||
mv $@.temp $@
|
||||
|
||||
clean:
|
||||
-rm WARNINGS
|
||||
-rm $(patsubst %.lyx,%.tex,$(wildcard *.lyx))
|
||||
-rm $(patsubst %.lyx,%.html,$(wildcard *.lyx))
|
||||
-rm $(patsubst %.lyx,%.lyx.emergency,$(wildcard *.lyx))
|
||||
-rm $(patsubst _bilder/%,%,$(wildcard _bilder/*))
|
||||
#rm -r $(patsubst %.lyx,%,$(wildcard *.lyx))
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue