From ac363b0b326afc73b7e01d0bed8848ed336e0a39 Mon Sep 17 00:00:00 2001 From: auric <104602845+ihateamongus@users.noreply.github.com> Date: Sun, 7 Sep 2025 19:23:44 -0500 Subject: refactor: share accent color shm header --- tools/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/Makefile (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..ae33902 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,16 @@ +CC = cc +CFLAGS = -std=c99 -Wall -Wextra -pedantic -Os +LDFLAGS = +PREFIX ?= /usr/local + +all: exofetch + +exofetch: exofetch.c + $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) + +clean: + rm -f exofetch + +install: exofetch + mkdir -p $(DESTDIR)$(PREFIX)/bin + cp -f exofetch $(DESTDIR)$(PREFIX)/bin -- cgit v1.2.3