Revert "fixed STLDFLAG order in broken st Makefile"

This reverts commit 7f990328e4.

this was wrong as pointed out by k0ga:
"STLDFLAGS is about flags to the linker, for example -L
not about -l for that reason it must go before the object list".
This commit is contained in:
Hiltjo Posthuma 2017-09-13 22:40:36 +02:00
parent 9c61f29bb7
commit 274d46ace0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ x.o: arg.h st.h win.h
$(OBJ): config.h config.mk
st: $(OBJ)
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
$(CC) $(STLDFLAGS) -o $@ $(OBJ)
clean:
rm -f st $(OBJ) st-$(VERSION).tar.gz