sbar

sbar - a suckless status bar
git clone git://ssnf.xyz/sbar
Log | Files | Refs

commit 00ab0a61889f80ff112763bfac884d153076a965
parent 0a068e35ccb5b570828149180378731ee953c03e
Author: ssnf <ssnf@ssnf.xyz>
Date:   Thu, 10 Jun 2021 19:05:12 +0000

fix compile errors

Diffstat:
M.gitignore | 2++
MMakefile | 4+++-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore @@ -1 +1,3 @@ config.h +*.o +sbar diff --git a/Makefile b/Makefile @@ -7,7 +7,9 @@ DST = ~/.local SRC = sbar.c linux.c OBJ = ${SRC:.c=.o} -all: sbar config.h +all: sbar + +${OBJ}: config.h config.h: cp config.def.h $@