Version 1.0 - r60 zu tags hinzugefuegt

This commit is contained in:
lars 2005-04-24 15:01:16 +00:00
parent 2c30422493
commit 609b0db4c0
84 changed files with 8593 additions and 0 deletions

20
v1.0/doku/Makefile Normal file
View file

@ -0,0 +1,20 @@
LATEX2HTMLPREFIX := -split 0 -init_file ../.latex2html-init -no_navigation
TEX_FILES := $(patsubst %.lyx,%.tex,$(wildcard *.lyx))
NEW_INDEXES := $(patsubst %.lyx,%/index.html,$(wildcard *.lyx))
.PHONY : clean
all : $(NEW_INDEXES)
$(TEX_FILES): %.tex: %.lyx
lyx -e latex $*.lyx
$(NEW_INDEXES): %/index.html: %.tex
latex2html $(LATEX2HTMLPREFIX) $*.tex
python mod_html_files.py $@
clean :
rm $(patsubst %.lyx,%.tex,$(wildcard *.lyx))
rm -r $(patsubst %.lyx,%,$(wildcard *.lyx))