aws-commons
Version:
A collection of small utilities to manage AWS services and actions
33 lines (23 loc) • 489 B
Plain Text
BIN = /usr/local/bin
all:
@make npm
@make test
npm:
@npm install
test:
@( [ -d node_modules ] || make npm )
@( grunt test )
jshint:
@( [ -d node_modules ] || make npm )
@( grunt jshint )
watch:
@( grunt watchall )
install:
[ -f $(BIN)/s3lister ] || ln -s `pwd`/bin/S3Lister.js $(BIN)/s3lister
[ -f $(BIN)/s3copyfile ] || ln -s `pwd`/bin/S3CopyFile.js $(BIN)/s3copyfile
version:
@( cd app ; node app --version )