Added ligatures patch

This commit is contained in:
mackarelfish
2020-05-12 03:46:52 +07:00
parent fdf3989005
commit 4edc7282ab
8 changed files with 175 additions and 12 deletions

View File

@ -4,7 +4,7 @@
include config.mk
SRC = st.c x.c boxdraw.c
SRC = st.c x.c boxdraw.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
boxdraw.o: config.h st.h boxdraw_data.h
$(OBJ): config.h config.mk