From: Quentin Rameau Date: Sun, 17 Sep 2017 20:31:26 +0000 (+0200) Subject: Fix missing config.h in Makefile X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=e04a3853643df1c98a451969d515d8850f138bcc;p=suckless%2Fslstatus.git Fix missing config.h in Makefile --- diff --git a/Makefile b/Makefile index d690612..d657981 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ include config.mk REQ = util -HDR = arg.h +HDR = arg.h config.h COM =\ battery\ cpu\ @@ -52,6 +52,9 @@ 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)