blob: b9235a5242fc6c94f72672a1265e4e2dc9250cd6 (
plain)
- SRCDIR?=src
- DATADIR?=data
- BENCHINP?=README.md
- JSMODULES=$(wildcard js/lib/*.js)
- SPEC=spec.txt
- SITE=_site
- SPECVERSION=$(shell grep version: $(SPEC) | sed -e 's/version: *//')
- BUILDDIR=build
- PROG?=$(BUILDDIR)/src/cmark
- .PHONY: all spec leakcheck clean fuzztest dingus upload jshint test testjs benchjs update-site upload-site check
- all: check man/man1/cmark.1
- mkdir -p $(BUILDDIR); cd build; cmake ..; make
- install: check
- mkdir -p $(BUILDDIR); cd build; cmake ..; make install
- clean:
- rm -rf $(BUILDDIR)
- check:
- @cmake --version >/dev/null || (echo "You need cmake to build this program: http://www.cmake.org/download/" && exit 1)
- $(PROG): all
- man/man1/cmark.1: man/cmark.1.md
- pandoc $< -o $@ -s -t man
- README.html: README.md template.html
- pandoc --template template.html -S -s -t html5 -o $@ $<
- spec: test spec.html
- spec.md: $(SPEC)
- perl spec2md.pl < $< > $@
- spec.html: spec.md template.html
- pandoc --no-highlight --number-sections --template template.html -s --toc -S $< > $@ # | perl -pe 's/␣/<span class="space"> <\/span>/g' > $@
- spec.pdf: spec.md template.tex specfilter.hs
- pandoc -s $< --template template.tex \
- --filter ./specfilter.hs -o $@ --latex-engine=xelatex --toc \
- --number-sections -V documentclass=report -V tocdepth=2 \
- -V classoption=twosides
- test: $(SPEC)
- perl runtests.pl $< $(PROG)
- js/commonmark.js: js/lib/index.js ${JSMODULES}
- browserify --standalone commonmark $< -o $@
- testjs: $(SPEC)
- node js/test.js
- jshint:
- jshint ${JSMODULES}
- benchjs:
- node js/bench.js ${BENCHINP}
- $(SRCDIR)/case_fold_switch.inc: $(DATADIR)/CaseFolding-3.2.0.txt
- perl mkcasefold.pl < $< > $@
- dingus: js/commonmark.js
- echo "Starting dingus server at http://localhost:9000" && python -m SimpleHTTPServer 9000
- leakcheck: $(PROG)
- cat leakcheck.md | valgrind --leak-check=full --dsymutil=yes $(PROG)
- operf: $(PROG)
- operf $(PROG) <$(BENCHINP) >/dev/null
- fuzztest:
- for i in `seq 1 10`; do \
- time cat /dev/urandom | head -c 500000 | iconv -f latin1 -t utf-8 | tee fuzz-$$i.txt | $(PROG) > /dev/null && rm fuzz-$$i.txt ; done
- $(SITE)/index.html: spec.txt
- ./make_site_index.sh $(SPECVERSION) | \
- pandoc --template template.html -S -s -t html5 -o $@
- $(SITE)/$(SPECVERSION)/index.html: spec.html
- mkdir -p $(SITE)/$(SPECVERSION)
- cp $< $@
- cd $(SITE); git add $(SPECVERSION)/index.html; git commit -a -m "Added version $(SPECVERSION) of spec"; cd ..
- $(SITE)/%: %
- cp $< $@
- update-site: $(SITE)/dingus.html $(SITE)/js/commonmark.js $(SITE)/index.html $(SITE)/$(SPECVERSION)/index.html $(SITE)/js/LICENSE
- upload-site:
- cd $(SITE) ; git pull; git commit -a -m "Updated site for latest spec, js" ; git push; cd ..
- distclean: clean
- -rm -f js/commonmark.js
- -rm -rf *.dSYM
- -rm -f README.html
- -rm -f spec.md fuzz.txt spec.html
|