Adding ligature patch

https://st.suckless.org/patches/ligatures/
-> st-ligatures-alpha-scrollback-0.9
This commit is contained in:
2023-12-31 14:12:55 +01:00
parent 94cd9d4927
commit 3454623c49
8 changed files with 317 additions and 120 deletions

View File

@ -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