aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2020-05-23 12:01:50 +0100
committerFederico Igne <git@federicoigne.com>2020-05-23 12:01:50 +0100
commit30faefe674c5048b7ffd31c98b1a2193c43c9fe2 (patch)
tree64aad31e5682624aef1c7538b2a9c63079fd5a3a /Makefile
parent81df9b428bd0330af98db9c69ffe69b0441e00fd (diff)
downloadst-30faefe674c5048b7ffd31c98b1a2193c43c9fe2.tar.gz
st-30faefe674c5048b7ffd31c98b1a2193c43c9fe2.zip
Apply Ligatures patch
Homepage link: https://st.suckless.org/patches/ligatures/ Patch links: https://st.suckless.org/patches/ligatures/0.8.3/st-ligatures-boxdraw-20200430-0.8.3.diff https://st.suckless.org/patches/ligatures/0.8.3/st-ligatures-scrollback-20200430-0.8.3.diff Additional info: the patch was applied by mixing the two patches linked above in order to provide compatibility with both BoxDraw and Scrollback patches.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8a2e1f9..8fe1520 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
4 4
5include config.mk 5include config.mk
6 6
7SRC = st.c x.c boxdraw.c 7SRC = st.c x.c boxdraw.c hb.c
8OBJ = $(SRC:.c=.o) 8OBJ = $(SRC:.c=.o)
9 9
10all: options st 10all: options st
@@ -22,7 +22,8 @@ config.h:
22 $(CC) $(STCFLAGS) -c $< 22 $(CC) $(STCFLAGS) -c $<
23 23
24st.o: config.h st.h win.h 24st.o: config.h st.h win.h
25x.o: arg.h config.h st.h win.h 25x.o: arg.h config.h st.h win.h hb.h
26hb.o: st.h
26boxdraw.o: config.h st.h boxdraw_data.h 27boxdraw.o: config.h st.h boxdraw_data.h
27 28
28$(OBJ): config.h config.mk 29$(OBJ): config.h config.mk