You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
312 B
Makefile

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