aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNikita Langer <nikitalanger@icloud.com>2026-05-31 09:44:56 +0200
committerNikita Langer <nikitalanger@icloud.com>2026-05-31 09:44:56 +0200
commitc46a160aa0618182c92f8a135fd8a35e53cdb4bf (patch)
tree19e1d825ae3304b807947bbc7215cabaf0a8caad /Makefile
parent5187e696fdafee436aced2a54524445a58ff6ada (diff)
downloadst-c46a160aa0618182c92f8a135fd8a35e53cdb4bf.tar.gz
st-c46a160aa0618182c92f8a135fd8a35e53cdb4bf.tar.bz2
st-c46a160aa0618182c92f8a135fd8a35e53cdb4bf.tar.xz
st-c46a160aa0618182c92f8a135fd8a35e53cdb4bf.zip
Boxdraw Support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f01809d..f31234d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
include config.mk
-SRC = st.c x.c hb.c
+SRC = st.c x.c boxdraw.c hb.c
OBJ = $(SRC:.c=.o)
all: st
@@ -17,6 +17,7 @@ config.h:
st.o: config.h st.h win.h
x.o: arg.h config.h st.h win.h hb.h
+boxdraw.o: config.h st.h boxdraw_data.h
hb.o: st.h
$(OBJ): config.h config.mk