From 86c63253ad51eb5d8ecef99fdd2e172d88f8b701 Mon Sep 17 00:00:00 2001 From: COW_ILLUMINATI Date: Wed, 5 Jun 2024 20:59:35 -0400 Subject: [PATCH] Goofy-aah makefile syntax --- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 191a06b..d0388ad 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,9 @@ all: g++ cowfetch.cpp -o cowfetch -install: + +install: all cp cowfetch /usr/local/bin/ mkdir -p /etc/cowfetch - if [ ! -f /etc/cowfetch/logo.ascii ]; then - - cp logo.ascii /etc/cowfetch/logo.ascii + if [ ! -f /etc/cowfetch/logo.ascii ]; then \ + cp logo.ascii /etc/cowfetch/logo.ascii; \ fi -