##// END OF EJS Templates
Added a lightweight "core" Makefile entry...
Added a lightweight "core" Makefile entry `make core` now runs a lightweight doc build process that doesn't include the "api" target. The "html" target now just references "core" and "api". This patch is a candidate for backporting to 1.x.

File last commit:

r12455:8f198bf9
r12532:92ec92fc
Show More
Makefile
23 lines | 516 B | text/x-makefile | MakefileLexer
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608
MinRK
fix skeleton template makefile
r12455 all: ../latex/skeleton/null.tplx ../latex/skeleton/display_priority.tplx
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608
# convert jinja syntax to tex
# cf http://flask.pocoo.org/snippets/55/
MinRK
fix skeleton template makefile
r12455 ../latex/skeleton/%.tplx: %.tpl
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608 @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' \
Matthias BUSSONNIER
lots of modification for latex
r9611 -e "s/tpl'/tplx'/g" \
Matthias BUSSONNIER
prepare ability to convert template for Tex
r9608 $^ >> $@
clean:
@echo "cleaning generated tplx files..."
MinRK
fix skeleton template makefile
r12455 @rm ../latex/skeleton/*