diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-07 19:12:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-07 19:12:26 -0500 |
| commit | 8661540682391f5f6db33a86747028d90dda09ed (patch) | |
| tree | 4061ec1e88b608bfaab2b0fabbd0c5a9c9a955bc /tools/Makefile | |
| parent | 5cf3a788d2335d79c2e26c133f013c994f035ad7 (diff) | |
| parent | 9717eef7ca42d4c912aa082f6e05dd6a3f0beac6 (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/Makefile | 16 |
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 |
