diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-08 20:51:40 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-08 20:51:40 -0500 |
| commit | e2ec2e4acbf07da282c7ce4d4370ed1a83e11e70 (patch) | |
| tree | 4026088b8084647406f27137e456a8d591a1b5cb /tools/Makefile | |
| parent | 5f17537ca9538c8f2214be62c46823163fd8b5e5 (diff) | |
| parent | 1e78a122dc52f1c791fdcb7733a53d70f3929970 (diff) | |
Merge pull request #17 from ihateamongus/codex/add-staggering-color-effect-demo-in-tools
Add color staggering X demo
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/tools/Makefile b/tools/Makefile index ae33902..e42f8bf 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,16 +1,20 @@ +.RECIPEPREFIX = > CC = cc CFLAGS = -std=c99 -Wall -Wextra -pedantic -Os LDFLAGS = PREFIX ?= /usr/local -all: exofetch +all: exofetch colorstagger exofetch: exofetch.c - $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) +>$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) + +colorstagger: colorstagger.c +>$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) -lX11 clean: - rm -f exofetch +>rm -f exofetch colorstagger install: exofetch - mkdir -p $(DESTDIR)$(PREFIX)/bin - cp -f exofetch $(DESTDIR)$(PREFIX)/bin +>mkdir -p $(DESTDIR)$(PREFIX)/bin +>cp -f exofetch $(DESTDIR)$(PREFIX)/bin |
