Add config.h dependency to quark-rule - quark - quark web server
 (HTM) git clone git://git.suckless.org/quark
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 1a93e3b22f363a0a8dffcf3c47b8d30ff207401f
 (DIR) parent b98cdd453f1c997f241f293f4de8823d54c0d693
 (HTM) Author: Laslo Hunhold <dev@frign.de>
       Date:   Mon, 14 Sep 2020 19:50:11 +0200
       
       Add config.h dependency to quark-rule
       
       Due to the refactoring of the header-dependencies it would happen that
       a compilation unit would pull in config.h before it was created, in case
       it didn't exist already.
       
       Signed-off-by: Laslo Hunhold <dev@frign.de>
       
       Diffstat:
         M Makefile                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       @@ -14,7 +14,7 @@ main.o: main.c arg.h data.h http.h sock.h util.h config.mk
        sock.o: sock.c sock.h util.h config.mk
        util.o: util.c util.h config.mk
        
       -quark: $(COMPONENTS:=.o) $(COMPONENTS:=.h) main.o config.mk
       +quark: config.h $(COMPONENTS:=.o) $(COMPONENTS:=.h) main.o config.mk
                $(CC) -o $@ $(CPPFLAGS) $(CFLAGS) $(COMPONENTS:=.o) main.o $(LDFLAGS)
        
        config.h: