From: Laslo Hunhold Date: Mon, 28 May 2018 13:58:28 +0000 (+0200) Subject: Fix object order and stop using a GNU make idiom X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=cd884c2f0a585f8c6a49f1faacacb7925d75dbb0;p=suckless%2Fslstatus.git Fix object order and stop using a GNU make idiom --- diff --git a/Makefile b/Makefile index 8c6f170..5756418 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ config.h: cp config.def.h $@ slstatus: slstatus.o $(COM:=.o) $(REQ:=.o) - $(CC) -o $@ $(LDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(LDLIBS) + $(CC) -o $@ $(LDFLAGS) $(COM:=.o) $(REQ:=.o) slstatus.o $(LDLIBS) clean: rm -f slstatus slstatus.o $(COM:=.o) $(REQ:=.o)