summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-06 23:23:50 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-06 23:23:50 -0800
commitbc978561c1616985df6a73657db5015822c4b33b (patch)
treed6b1289ea135a2a124b39802991297dfb3546bcb /Makefile
parent187149ec3efa72c8ea931e15690943698214d748 (diff)
More cmake improvements.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 11 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 6bcaa93..9ff52b1 100644
--- a/Makefile
+++ b/Makefile
@@ -75,10 +75,11 @@ benchjs:
#
#$(SRCDIR)/scanners.c: $(SRCDIR)/scanners.re
# re2c --case-insensitive -bis $< > $@ || (rm $@ && false)
-#
-#$(SRCDIR)/case_fold_switch.inc: $(DATADIR)/CaseFolding-3.2.0.txt
-# perl mkcasefold.pl < $< > $@
-#
+
+
+$(SRCDIR)/case_fold_switch.inc: $(DATADIR)/CaseFolding-3.2.0.txt
+ perl mkcasefold.pl < $< > $@
+
#$(SRCDIR)/html/html_unescape.h: $(SRCDIR)/html/html_unescape.gperf
# gperf -I -t -N find_entity -H hash_entity -K entity -C -l
# --null-strings -m5 $< > $@
@@ -92,6 +93,12 @@ benchjs:
# install $(cmark_HDR) $(PREFIX)/include/cmark/
# install $(HTML_HDR) $(PREFIX)/include/cmark/html/
+#CMARK_HDR = $(SRCDIR)/cmark.h $(SRCDIR)/buffer.h $(SRCDIR)/references.h \
+# $(SRCDIR)/chunk.h $(SRCDIR)/debug.h $(SRCDIR)/utf8.h \
+# $(SRCDIR)/scanners.h $(SRCDIR)/inlines.h
+#
+#HTML_HDR = $(SRCDIR)/html/html_unescape.h $(SRCDIR)/html/houdini.h
+
dingus: js/commonmark.js
echo "Starting dingus server at http://localhost:9000" && python -m SimpleHTTPServer 9000