diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-06 23:23:50 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-06 23:23:50 -0800 |
commit | bc978561c1616985df6a73657db5015822c4b33b (patch) | |
tree | d6b1289ea135a2a124b39802991297dfb3546bcb /Makefile | |
parent | 187149ec3efa72c8ea931e15690943698214d748 (diff) |
More cmake improvements.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -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 |