]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/library/didactic/exercises/Makefile
Preparing for 0.5.9 release.
[helm.git] / helm / software / matita / library / didactic / exercises / Makefile
1
2 all:
3         for X in *.ma; do $(MAKE) exercise-$$X; done
4
5 clean:
6         rm exercise-*
7
8 exercise-%.ma: %.ma
9         cp $< $@
10         perl -ne 'undef $$/;s/\(\*BEGIN.*?END\*\)/…/msg;print' -i $@
11         perl -ne 'undef $$/;s/\(\*DOCBEGIN.*?DOCEND\*\)//msg;print' -i $@
12         (echo '<?xml version="1.0" encoding="UTF-8"?><html><head></meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">pre, code { font-family: Sans; font-size: 1em; background-color:#efee79; } pre { margin-right: 5em;}</style></head><body>'; awk 'BEGIN { p = 0; } /DOCEND/ { p = 0; } { if (p == 1) print $$0; } /DOCBEGIN/ { p = 1;}' < $< | markdown; echo '</body></html>') > exercise-$*.html
13