fork-openpgpjs/Makefile
2012-01-15 00:17:21 +01:00

22 lines
529 B
Makefile

default: help
help:
@echo "minify - makes JavaScript download and run faster"
@echo "lint - checks JavaScript files for style issues"
@echo "test - runs JavaScript unit tests"
@echo "ext-chr-gmail - creates the Google Chrome / Google Mail extension"
ext-chr-gmail:
@./scripts/create_extension.sh
lint:
@echo See http://code.google.com/closure/utilities/
@./scripts/lint.sh
minify:
@echo See http://code.google.com/closure/compiler/
@./scripts/minimize.sh
test:
@echo to be implemented