aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2021-09-22 20:30:34 +0100
committerShivesh Mandalia <mail@shivesh.org>2021-09-22 20:30:34 +0100
commit3964320a731def870e1c28bc8bae05310decc949 (patch)
treefdd660d368bafa25e6084453866e3032b90da78d /Makefile
parent2467e2824fb6a2bc2bf76883f8a2c7561d7af4a4 (diff)
downloadst-3964320a731def870e1c28bc8bae05310decc949.tar.gz
st-3964320a731def870e1c28bc8bae05310decc949.zip
Proper drawing of ligatures
- Patch st-ligatures-scrollback-0.8.4 <https://st.suckless.org/patches/ligatures/>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 50112f1..8697a9e 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
include config.mk
-SRC = st.c x.c
+SRC = st.c x.c hb.c
OBJ = $(SRC:.c=.o)
all: options st
@@ -22,7 +22,8 @@ config.h:
$(CC) $(STCFLAGS) -c $<
st.o: config.h st.h win.h
-x.o: arg.h config.h st.h win.h
+x.o: arg.h config.h st.h win.h hb.h
+hb.o: st.h
$(OBJ): config.h config.mk