Files
kopia/app/Makefile
Jarek Kowalski 7f79c77d73 Makefile: refactored tools to be installable on Windows with only minimal deps (make/curl/unzip)
This allows full kopia and kopia-ui to be built on Windows along with
running lint and integration tests.
2020-02-17 18:45:08 -08:00

22 lines
441 B
Makefile

SHELL:=/bin/bash
dev: node_modules
$(npm) $(npm_flags) run dev
run: build-html
$(npm) $(npm_flags) run start-electron-prebuilt
build-html: node_modules
$(npm) $(npm_flags) run build-html
build-electron-dir: node_modules build-html
$(npm) $(npm_flags) run build-electron-dir
build-electron: node_modules build-html
$(npm) $(npm_flags) run build-electron
include ../tools/tools.mk
node_modules: $(npm)
$(npm) $(npm_flags) install