• Makefile
all:

deploy: build
	fab -R $(PROFILE) deploy:$(PROFILE)

build: check-profile clean
	sbt clean stage

init: check-profile
	fab -R $(PROFILE) init

check-profile:
ifndef PROFILE
	$(error PROFILE is undefined)
endif

clean: clean-target

clean-target:
	rm -rf target

.PHONY: clean-deploy clean-target check-profile

# vim:noet

thswave

try hard, try hard!