all repos — slstatus @ cd884c2f0a585f8c6a49f1faacacb7925d75dbb0

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

Fix object order and stop using a GNU make idiom
Laslo Hunhold dev@frign.de
Mon, 28 May 2018 15:58:28 +0200
commit

cd884c2f0a585f8c6a49f1faacacb7925d75dbb0

parent

0efd64ffaa04715eff9c834c437562952c4531cd

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

jump to
M MakefileMakefile

@@ -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)