Add makefile
parent
353efd3085
commit
3fb7eed6e8
@ -0,0 +1,18 @@
|
||||
LANGUAGES = german english
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all:
|
||||
for lang in $(LANGUAGES); do \
|
||||
pushd $$lang; \
|
||||
tectonic -X build; \
|
||||
popd; \
|
||||
mkdir -p output; \
|
||||
cp $$lang/build/default/default.pdf output/Flyer_$$lang.pdf; \
|
||||
done
|
||||
for lang in $(LANGUAGES); do \
|
||||
rm -r $$lang/build/; \
|
||||
done
|
||||
|
||||
clean:
|
||||
rm -r output
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue