Skip to content

Commit

Permalink
build: added aw-sync to default build target
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Nov 21, 2023
1 parent 51ee98e commit 753308a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: all aw-server aw-webui build install package set-version test test-coverage test-coverage-tarpaulin test-coverage-grcov coverage coverage-html coverage-lcov

all: build
build: aw-server
build: aw-server aw-sync

DESTDIR :=
ifeq ($(SUDO_USER),)
Expand All @@ -23,6 +23,9 @@ endif
aw-server: set-version aw-webui
cargo build $(cargoflag) --bin aw-server

aw-sync: set-version
cargo build $(cargoflag) --bin aw-sync

aw-webui:
ifeq ($(SKIP_WEBUI),true) # Skip building webui if SKIP_WEBUI is true
@echo "Skipping building webui"
Expand Down

0 comments on commit 753308a

Please sign in to comment.