diff options
| author | stkhan <personal@slickd.xyz> | 2021-05-03 12:03:52 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-05-03 12:03:52 -0500 |
| commit | cd511f1783f4933bce05a995c82f9160edb7d0e6 (patch) | |
| tree | 40633df933e3159c5190ead82681b98c68611fc8 /paleofetch/Makefile | |
| parent | 99c885f477f8a06f1c4c6778e5fa9f2373a38e7b (diff) | |
Fixed some stuff, added ns, relocated scripts /usr/local/bin
Diffstat (limited to 'paleofetch/Makefile')
| -rw-r--r-- | paleofetch/Makefile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/paleofetch/Makefile b/paleofetch/Makefile deleted file mode 100644 index b272a9e..0000000 --- a/paleofetch/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -CFLAGS=-O2 -Wall -Wextra -lX11 -lpci -PREFIX=/usr -CACHE=$(shell if [ "$$XDG_CACHE_HOME" ]; then echo "$$XDG_CACHE_HOME"; else echo "$$HOME"/.cache; fi) - -all: paleofetch - -clean: - rm -f paleofetch $(CACHE)/paleofetch - -paleofetch: paleofetch.c paleofetch.h config.h - $(eval battery_path := $(shell ./config_scripts/battery_config.sh)) - $(CC) paleofetch.c -o paleofetch $(CFLAGS) -D $(battery_path) - strip paleofetch - -install: paleofetch - mkdir -p $(PREFIX)/bin - install ./paleofetch $(PREFIX)/bin/paleofetch |