summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAiden Gall <aiden@aidengall.xyz>2023-11-16 15:28:59 +0000
committerAiden Gall <aiden@aidengall.xyz>2023-11-16 15:32:18 +0000
commit7786188a45318f1bcac232d1615ffb8103c80677 (patch)
tree83c2e3cab77a49ff1d12c812139a9a08b40e3c9b /Makefile
parent09d3ab2294c8113e45cf7a64902989ba45bb748a (diff)
patch boxdraw
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