From 737b57922e8230d031a55e81bc01de44cbe278bb Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 2 May 2020 18:51:36 -0400 Subject: make sure the makefile always builds all targets --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Makefile') 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: -- cgit v1.2.3-54-g00ecf