From be9b8e760601b21379dd34d6c16b54092111a824 Mon Sep 17 00:00:00 2001 From: PoetryInCode <56119766+PoetryInCode@users.noreply.github.com> Date: Mon, 16 Mar 2020 14:05:29 -0400 Subject: [PATCH] set copy flag to -u (--update) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9986db0..ee27916 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ LINK=-lncurses FINBIN=bin/main.o install: build ; - cp $(FINBIN) /usr/local/bin/ + cp -u $(FINBIN) /usr/local/bin/ build: $(CMD) ./src/main.c $(LINK) -o ./bin/matrix