summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorauric <104602845+ihateamongus@users.noreply.github.com>2025-09-07 19:12:26 -0500
committerGitHub <noreply@github.com>2025-09-07 19:12:26 -0500
commit8661540682391f5f6db33a86747028d90dda09ed (patch)
tree4061ec1e88b608bfaab2b0fabbd0c5a9c9a955bc /tools/Makefile
parent5cf3a788d2335d79c2e26c133f013c994f035ad7 (diff)
parent9717eef7ca42d4c912aa082f6e05dd6a3f0beac6 (diff)
Merge pull request #9 from ihateamongus/codex/analyze-oldresources-folder-for-performance-zm9nfy
Add glass-style transparency and dynamic tags
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile16
1 files changed, 16 insertions, 0 deletions
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