DEPLOY_TARGET="/var/www/imok.ngha.ro/" PATH := node_modules/.bin:$(PATH) SHELL := /bin/bash css_out := index.css js_out := index.js libs := lib/app.js styles := styles/app.scss .PHONY: all clean deploy all: $(app_bundle) %.js: babel $< --out-file $@ %.css: sass --style compressed $< $@ index.css: $(styles) index.js: $(libs) build: index.css index.js deploy: index.* rsync -vr $^ $(DEPLOY_TARGET) all: build deploy