www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Makefile (268B)


      1 .PHONY: build
      2 
      3 build: $(BUILDDIR)/contrib/auto-render.min.js
      4 
      5 $(BUILDDIR)/contrib/auto-render.min.js: $(BUILDDIR)/auto-render.js
      6 	$(UGLIFYJS) < $< > $@
      7 
      8 $(BUILDDIR)/auto-render.js: auto-render.js
      9 	$(BROWSERIFY) -t [ babelify ] $< --standalone renderMathInElement > $@