diff options
author | Laslo Hunhold <dev@frign.de> | 2018-05-28 15:58:28 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-28 16:16:20 +0200 |
commit | 64f1b1f5da7826b3f87492d4f9019d3a104e9277 (patch) | |
tree | 68de1a8135b14cd8ffd7201d9e24a6e6eab28c7e /Makefile | |
parent | 708cbcd71200c60a845cacb3e19fed9e390c6c68 (diff) |
Fix object order and stop using a GNU make idiom
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |