##// END OF EJS Templates
start tex template
start tex template

File last commit:

r9608:7ed23297
r9610:44388d7a
Show More
Makefile
22 lines | 436 B | text/x-makefile | MakefileLexer
all: tex/null.tplx tex/display_priority.tplx
# convert jinja syntax to tex
# cf http://flask.pocoo.org/snippets/55/
tex/%.tplx: %.tpl
@echo 'generating tex equivalent of $^: $@'
@echo '((= autogenerated file do not edit =))' > $@
@sed \
-e 's/{%/((*/g' \
-e 's/%}/*))/g' \
-e 's/{{/(((/g' \
-e 's/}}/)))/g' \
-e 's/{#/((=/g' \
-e 's/#}/=))/g' \
$^ >> $@
clean:
@echo "cleaning generated tplx files..."
@rm tex/*