diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-11 09:38:59 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-11 09:38:59 -0500 |
| commit | 0408cb4803e0b2c82affb16e2eac8dfd73895343 (patch) | |
| tree | 928938f4d2d0c8e7447c6c69cdb0463c60d21dd2 /tools/Makefile | |
| parent | 8f03aa9417b06d91182e7adc2e0b8c53e7cf6069 (diff) | |
| parent | 4da4c90adba63332f305725f6dcff9d0e0665b96 (diff) | |
Merge pull request #24 from ihateamongus/codex/create-system-snapshot-tool-for-gentoo
Add Gentoo system snapshot script and viewer
Diffstat (limited to 'tools/Makefile')
| -rw-r--r-- | tools/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index e42f8bf..f81d083 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -4,7 +4,7 @@ CFLAGS = -std=c99 -Wall -Wextra -pedantic -Os LDFLAGS = PREFIX ?= /usr/local -all: exofetch colorstagger +all: exofetch colorstagger snapshot_viewer exofetch: exofetch.c >$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) @@ -12,8 +12,11 @@ exofetch: exofetch.c colorstagger: colorstagger.c >$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) -lX11 +snapshot_viewer: snapshot_viewer.c +>$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) + clean: ->rm -f exofetch colorstagger +>rm -f exofetch colorstagger snapshot_viewer install: exofetch >mkdir -p $(DESTDIR)$(PREFIX)/bin |
