diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-08 21:02:18 -0500 |
|---|---|---|
| committer | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-08 21:02:18 -0500 |
| commit | 9e10c2714cd159ce953155225cbe2ecc6810bd7f (patch) | |
| tree | 39cf7b7d40d3e9808e436cfa208bccd9a8c43208 /tools/Makefile | |
| parent | d11aec86841f77edd6eba3e07aa1e7e591e9da2a (diff) | |
Add minimal X11 login manager and cleanup
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 |
