orbit-db/Makefile

20 lines
247 B
Makefile
Raw Normal View History

2016-11-26 14:26:56 +01:00
all: build
deps:
npm install
2016-11-26 14:26:56 +01:00
test: deps
npm run test
2016-11-26 14:26:56 +01:00
build: deps
npm run build
@echo "Build success!"
@echo "Output: 'dist/', 'examples/browser/'"
clean:
rm -rf orbit-db/
rm -rf ipfs/
rm -rf node_modules/
.PHONY: all deps test clean