aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R Garbe <anselm@garbe.us>2017-07-23 11:17:26 +0200
committerAnselm R Garbe <anselm@garbe.us>2017-07-23 11:17:26 +0200
commit7f990328e4fec8dfaaad311cb8af2304b58c872e (patch)
tree1e3801ca5706733d67927a5ddd53f5db3e033fa1 /Makefile
parent8dacdfbab1c476063a31bc3b8d7222ac2b70ff66 (diff)
downloadst-patched-7f990328e4fec8dfaaad311cb8af2304b58c872e.tar.bz2
st-patched-7f990328e4fec8dfaaad311cb8af2304b58c872e.tar.xz
st-patched-7f990328e4fec8dfaaad311cb8af2304b58c872e.zip
fixed STLDFLAG order in broken st Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 128ee9d..c678ead 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ x.o: arg.h st.h win.h
27$(OBJ): config.h config.mk 27$(OBJ): config.h config.mk
28 28
29st: $(OBJ) 29st: $(OBJ)
30 $(CC) $(STLDFLAGS) -o $@ $(OBJ) 30 $(CC) -o $@ $(OBJ) $(STLDFLAGS)
31 31
32clean: 32clean:
33 rm -f st $(OBJ) st-$(VERSION).tar.gz 33 rm -f st $(OBJ) st-$(VERSION).tar.gz