.PHONY: build
build:
	echo "Already built"

.PHONY: install
install:
	mkdir -p $(DESTDIR)/wyliodrin/node-red
	cp -rf CONTRIBUTING.md LICENSE README.md lib nodes public red.js test Gruntfile.js Makefile bin editor node_modules package.json red settings.js update.sh $(DESTDIR)/wyliodrin/node-red

.PHONY: clean
clean:
	echo "Already clean"

