summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2022-01-20 23:11:39 +0100
committerAleksa Vuckovic <aleksa@vuckovic.cc>2023-12-06 05:03:18 +0100
commit597785bbc6fc9252b815a280e03f70ee107068ae (patch)
tree02e513ebd7ca2a771a504c4289ca9e53596d747c /Makefile
parenta0e12c2e2695ea551b2d382294b937e467d25e39 (diff)
boxdraw patch
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 15db421..a64b4c2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
include config.mk
-SRC = st.c x.c
+SRC = st.c x.c boxdraw.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
+boxdraw.o: config.h st.h boxdraw_data.h
$(OBJ): config.h config.mk