durch rekursives Make ersetzt

This commit is contained in:
Jörg Thalheim 2013-10-21 20:47:58 +02:00
parent a44385fe1e
commit 44b46fd52b
3 changed files with 13 additions and 7 deletions

View File

@ -1,10 +1,9 @@
.cmd_ok:
./check_cmds.sh
%.pdf: %.tex
latexmk -pdf $<
all: .cmd_ok bericht/bericht.pdf
SUBDIRS = bericht
all:
for d in $(SUBDIRS); do \
(cd $$d; make all) \
done
www/bericht.pdf: bericht/bericht.pdf
cp bericht/bericht.pdf www
clean:
latexmk -CA
upload: all
rsync -avc www/ lctp@devkid.net:/

7
bericht/Makefile Normal file
View File

@ -0,0 +1,7 @@
.cmd_ok:
./check_cmds.sh
%.pdf: %.tex
latexmk -pdf $<
all: .cmd_ok bericht.pdf
clean:
latexmk -CA