##// END OF EJS Templates
Removed invalid comment (from previous commit) and added a new line
Removed invalid comment (from previous commit) and added a new line

File last commit:

r11086:c137395d
r12026:b1f37db9
Show More
Makefile
23 lines | 460 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' \
-e "s/tpl'/tplx'/g" \
$^ >> $@
clean:
@echo "cleaning generated tplx files..."
@rm tex/*