From ec4dc32688cfc71686c24a4edc59fd7427a6bf33 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Sun, 3 Oct 2021 19:51:34 +0200 Subject: [PATCH] Fix typo in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b8548166..a509a8de 100644 --- a/Makefile +++ b/Makefile @@ -29,8 +29,8 @@ all: help help: ## Print this help message @grep -E '^[a-zA-Z._-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' -binary: $(TAGET)-native ## Build a release binary -binary-universal: $(TAGET)-universal ## Build a universal release binary +binary: $(TARGET)-native ## Build a release binary +binary-universal: $(TARGET)-universal ## Build a universal release binary $(TARGET)-native: MACOSX_DEPLOYMENT_TARGET="10.11" cargo build --release $(TARGET)-universal: