all repos — slstatus @ e04a3853643df1c98a451969d515d8850f138bcc

my build of slstatus (tools.suckless.org/slstatus/)

Fix missing config.h in Makefile
Quentin Rameau quinq@fifth.space
Sun, 17 Sep 2017 22:31:26 +0200
commit

e04a3853643df1c98a451969d515d8850f138bcc

parent

11d4bec6481886abb889cbeded5c8f52e5dfd844

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M MakefileMakefile

@@ -5,7 +5,7 @@

include config.mk REQ = util -HDR = arg.h +HDR = arg.h config.h COM =\ battery\ cpu\

@@ -51,6 +51,9 @@ uptime.o: uptime.c config.mk $(HDR) $(REQ:=.h)

user.o: user.c config.mk $(HDR) $(REQ:=.h) volume.o: volume.c config.mk $(HDR) $(REQ:=.h) wifi.o: wifi.c config.mk $(HDR) $(REQ:=.h) + +config.h: + cp config.def.h $@ .o: $(CC) -o $@ $(LDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(LDLIBS)