diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-24 12:24:54 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-24 12:24:54 -0800 |
commit | 86039e2db099bbf2b56318c7ecacc62e07b7d6a2 (patch) | |
tree | e68d4d0db8d712f9415eefedc31f43c32f4b9a93 /Makefile | |
parent | bb777ce120ea26ece018e16e92b013a933b2dbb0 (diff) |
Makefile: Removed JS related stuff.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 35 |
1 files changed, 3 insertions, 32 deletions
@@ -16,12 +16,11 @@ NUMRUNS?=10 CMARK=$(BUILDDIR)/src/cmark PROG?=$(CMARK) BENCHINP?=README.md -JSMODULES=$(wildcard js/lib/*.js) VERSION?=$(SPECVERSION) RELEASE?=CommonMark-$(VERSION) INSTALL_PREFIX?=/usr/local -.PHONY: all cmake_build spec leakcheck clean fuzztest dingus upload jshint test testjs benchjs update-site upload-site npm debug mingw archive tarball ziparchive testtarball testziparchive testlib bench astyle +.PHONY: all cmake_build spec leakcheck clean fuzztest dingus upload test update-site upload-site debug mingw archive tarball ziparchive testtarball testziparchive testlib bench astyle all: cmake_build man/man3/cmark.3 @@ -123,39 +122,11 @@ operf: $(CMARK) operf $< < $(BENCHINP) > /dev/null distclean: clean - -rm -f js/dist/commonmark.js -rm -rf *.dSYM -rm -f README.html -rm -f spec.md fuzz.txt spec.html -rm -rf $(BENCHFILE) $(ALLTESTS) progit -### JavaScript ### - -js/dist/commonmark.js: js/lib/index.js ${JSMODULES} - browserify --standalone commonmark $< -o $@ - -# 'npm install -g uglify-js' for the uglifyjs tool: -js/dist/commonmark.min.js: js/dist/commonmark.js - uglifyjs $< --compress keep_fargs=true,pure_getters=true --preamble "/* commonmark $(VERSION) https://github.com/jgm/CommonMark @license BSD3 */" > $@ - -testjs: $(SPEC) - node js/test.js - -jshint: - jshint ${JSMODULES} - -lint: - eslint -c js/eslint.json ${JSMODULES} js/bin/commonmark js/test.js js/bench.js - -benchjs: - sudo renice 99 $$$$; node js/bench.js ${BENCHINP} - -npm: - cd js; npm publish - -dingus: js/dist/commonmark.js - echo "Starting dingus server at http://localhost:9000/dingus.html" && python -m SimpleHTTPServer 9000 - ### Spec ### spec.md: $(SPEC) @@ -172,8 +143,8 @@ spec.pdf: spec.md tools/template.tex tools/specfilter.hs ### Website ### -update-site: spec js/dist/commonmark.js +update-site: spec make -C $(SITE) update -upload-site: spec js/dist/commonmark.js +upload-site: spec make -C $(SITE) upload |