From 97927a1dd5f811dfff7adac2679a9f115c42ac28 Mon Sep 17 00:00:00 2001 From: SoloArchx250 <> Date: Wed, 24 Jun 2020 10:38:58 -0400 Subject: [PATCH] fix Makefile --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 4899b27..55aaa46 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ -CC="cc" -INSTALL_DIR="/usr/local/bin/" -OUT="viewbin" +CC=cc +INSTALL_DIR=/usr/local/bin/ +OUT=viewbin all: build ; build: viewbin.c - cc $^ -o "$OUT" + cc $^ -o $(OUT) install: - sudo cp viewbin "$INSTALL_DIR" - + sudo cp viewbin $(INSTALL_DIR) + uninstall: - sudo rm "$INSTALL_DIR$OUT" + sudo rm $(INSTALL_DIR)$(OUT)