/Makefile
all: dist/index.html dist/app.js dist/style.css

dist/index.html: src/index.html
	cp $< $@

dist/style.css: src/style.css
	cp $< $@

dist/app.js: src/*.js
	node_modules/.bin/webpack