mirror of
https://github.com/kopia/kopia.git
synced 2026-02-02 10:44:11 -05:00
15 lines
259 B
Makefile
15 lines
259 B
Makefile
all:
|
|
|
|
include ../tools/tools.mk
|
|
|
|
dev: node_modules
|
|
PATH=$(TOOL_PATH) $(NPM_TOOL) run start
|
|
|
|
build-html: node_modules
|
|
PATH=$(TOOL_PATH) $(NPM_TOOL) run build
|
|
|
|
node_modules: $(NPM_TOOL)
|
|
PATH=$(TOOL_PATH) $(NPM_TOOL) install
|
|
|
|
clean:
|
|
rm -rf node_modules build
|