1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2024-09-21 04:10:05 -04:00
moneygo/Makefile

15 lines
399 B
Makefile
Raw Normal View History

JS_SOURCES = $(wildcard js/*.js) $(wildcard js/*/*.js)
all: static/bundle.js static/react-widgets
node_modules:
npm install
static/bundle.js: $(JS_SOURCES) node_modules
browserify -t [ babelify --presets [ react ] ] js/main.js -o static/bundle.js
static/react-widgets: node_modules/react-widgets/dist node_modules
rsync -a node_modules/react-widgets/dist/ static/react-widgets/
.PHONY = all