Makefile 107 B

1234567
  1. all:
  2. @cd .. && browserify -e index.js -o browser/blessed.js
  3. clean:
  4. @rm -f blessed.js
  5. .PHONY: clean all