Skip to content

Commit 753308a

Browse files
committed
build: added aw-sync to default build target
1 parent 51ee98e commit 753308a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.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
22

33
all: build
4-
build: aw-server
4+
build: aw-server aw-sync
55

66
DESTDIR :=
77
ifeq ($(SUDO_USER),)
@@ -23,6 +23,9 @@ endif
2323
aw-server: set-version aw-webui
2424
cargo build $(cargoflag) --bin aw-server
2525

26+
aw-sync: set-version
27+
cargo build $(cargoflag) --bin aw-sync
28+
2629
aw-webui:
2730
ifeq ($(SKIP_WEBUI),true) # Skip building webui if SKIP_WEBUI is true
2831
@echo "Skipping building webui"

0 commit comments

Comments
 (0)