mirror of
https://github.com/pikami/st.git
synced 2025-04-22 09:23:11 +01:00
Revert "fixed STLDFLAG order in broken st Makefile"
This reverts commit 7f990328e4fec8dfaaad311cb8af2304b58c872e. 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:
parent
9c61f29bb7
commit
274d46ace0
2
Makefile
2
Makefile
@ -27,7 +27,7 @@ x.o: arg.h st.h win.h
|
|||||||
$(OBJ): config.h config.mk
|
$(OBJ): config.h config.mk
|
||||||
|
|
||||||
st: $(OBJ)
|
st: $(OBJ)
|
||||||
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
|
$(CC) $(STLDFLAGS) -o $@ $(OBJ)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f st $(OBJ) st-$(VERSION).tar.gz
|
rm -f st $(OBJ) st-$(VERSION).tar.gz
|
||||||
|
Loading…
x
Reference in New Issue
Block a user