leere downloads werden automatisch geloescht

Downloads, deren Verifikation fehlschlaegt, werden automatisch geloescht
tidy laesst sich per Hand als Syntax-Pruefung einschalten
This commit is contained in:
lars 2006-12-29 15:35:05 +00:00
parent bbdf670c06
commit 0db47ee6e3
2 changed files with 22 additions and 6 deletions

View file

@ -1,5 +1,10 @@
# validation program
VALIDATE_BIN := validate
VALIDATE_OPTS :=
# alternativ kann auch ein anderes Pruef-Programm verwendet werden - tidy kann
# aber wohl nicht daran gehindert werden, unwichtige Nachrichten auszugeben
#VALIDATE_BIN := tidy
#VALIDATE_OPTS := -o /dev/null -errors -quiet
# our self written documents
LYX_FILES := $(shell find . -name *.lyx -type f)
# the tex output of lyx
@ -43,7 +48,7 @@ validate: $(EXPORT_DIRS)
echo >&2 ;\
false ;\
fi
@$(VALIDATE_BIN) $(shell find . -name *.html -type f)
@$(VALIDATE_BIN) $(VALIDATE_OPTS) $(shell find . -name *.html -type f) ;\
# copy the created files to the destination directory (usually outside of this directory tree)