From e383ce817ed1f1093894fe3df5c195a5e7126df8 Mon Sep 17 00:00:00 2001 From: Joey Eamigh <55670930+JoeyEamigh@users.noreply.github.com> Date: Tue, 7 Feb 2023 12:37:01 -0500 Subject: [PATCH] adding newline --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8799e05..2c2040e 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ NAME = "globalenter" build b: @echo "building x86_64 Linux" - RUSTFLAGS=-Awarnings cargo build --release --target x86_64-unknown-linux-gnu -q --frozen + RUSTFLAGS=-Awarnings cargo build --release --target x86_64-unknown-linux-gnu -q @echo "building x86_64 Windows" - RUSTFLAGS=-Awarnings cargo build --release --target x86_64-pc-windows-gnu -q --frozen + RUSTFLAGS=-Awarnings cargo build --release --target x86_64-pc-windows-gnu -q mkdir -p bin cp target/x86_64-unknown-linux-gnu/release/$(NAME) bin/$(NAME) chmod +x bin/$(NAME) @@ -14,4 +14,4 @@ build b: clean c: cargo clean - rm -rf bin \ No newline at end of file + rm -rf bin