commit 7035e9fdfd3db60986b87cb30c03a21f0fae3417 parent d0b5faab1b2221d6f9ff13f0fbe1108ca9d1a97f Author: sam-barr <samfbarr@outlook.com> Date: Tue, 21 Apr 2020 21:46:16 -0500 rebranding Diffstat:
| M | .gitignore | | | 2 | +- |
| M | Makefile | | | 12 | ++++++------ |
| R | fetch.c -> paleofetch.c | | | 0 |
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -1 +1 @@ -fetch +paleofetch diff --git a/Makefile b/Makefile @@ -1,15 +1,15 @@ CFLAGS=-O3 -Wall -Wextra PREFIX=$(HOME)/.local -all: fetch +all: paleofetch clean: rm -f fetch -fetch: fetch.c - $(CC) fetch.c -o fetch $(CFLAGS) - strip fetch +paleofetch: paleofetch.c + $(CC) paleofetch.c -o paleofetch $(CFLAGS) + strip paleofetch -install: fetch +install: paleofetch mkdir -p $(PREFIX)/bin - install ./fetch $(PREFIX)/bin/fetch + install ./paleofetch $(PREFIX)/bin/paleofetch diff --git a/fetch.c b/paleofetch.c