aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c792114..a95bf3b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,12 +3,15 @@ VERSION = $(shell cargo metadata --no-deps --format-version 1 | jq '.packages[0]
DEB_PACKAGE = $(NAME)_$(VERSION)_amd64.deb
-all:
- @cargo build
+all: build
.PHONY: all
+build:
+ @cargo build --all-targets
+.PHONY: build
+
release:
- @cargo build --release
+ @cargo build --release --all-targets
.PHONY: release
test: