summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-03 22:33:08 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-03 22:33:08 -0800
commit6d39d67bc90e2a6e4cd22539be270f246069e64a (patch)
tree4de5a5d6585a7d0addccee3406af260ba7af0cfd /Makefile
parent918867accab909c6efb2f762773b9f72c8f1014b (diff)
Rewrote spec2md in python.
Better to only require python, not python and perl.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e00107a..0791f1a 100644
--- a/Makefile
+++ b/Makefile
@@ -178,7 +178,7 @@ dingus: js/commonmark.js
### Spec ###
spec.md: $(SPEC)
- perl spec2md.pl < $< > $@
+ python3 spec2md.py $< > $@
spec: spec.html
@anchors=`perl -ne '@matches = / id="([^"]*)"/g; foreach $$match (@matches) { print "$$match\n"; }' $<`; \