Unverified Commit 2b098c7c authored by Joaquim Rocha's avatar Joaquim Rocha Committed by GitHub
Browse files

Merge pull request #163 from kinvolk/improve_makefile_app

Makefile: Improve the app related targets
parents d61dca33 322fe144
No related merge requests found
Showing with 10 additions and 8 deletions
+10 -8
......@@ -20,14 +20,16 @@ backend-lint: tools/golangci-lint
cd backend && ./tools/golangci-lint run
.PHONY: app
app:
cd app && npm run build && npm run package -- --win --linux --mac
app-win:
cd app && npm run build && npm run package -- --win
app-linux:
cd app && npm run build && npm run package -- --linux
app-mac:
cd app && npm run build && npm run package -- --mac
app-build:
cd app && npm install && npm run build
app: app-build
cd app && npm run package -- --win --linux --mac
app-win: app-build
cd app && npm run package -- --win
app-linux: app-build
cd app && npm run package -- --linux
app-mac: app-build
cd app && npm run package -- --mac
.PHONY: backend
backend:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment