mirror of
https://github.com/kopia/kopia.git
synced 2026-03-13 19:57:27 -04:00
This allows full kopia and kopia-ui to be built on Windows along with running lint and integration tests.
22 lines
441 B
Makefile
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
|