summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-05-05 13:55:37 -0400
committerLuke Smith <luke@lukesmith.xyz>2020-05-05 13:55:37 -0400
commitb35e4f57273f56c53dbc4d77d7b5992c47255662 (patch)
treefa6845acd8e28b3abe16f49c857136df2af34ab0 /Makefile
parentb43e574fa6e7e99cc620603cd0b7a36e1d7376b1 (diff)
boxdraw added
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0e3f423..2e05e4b 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: options st
@@ -23,6 +23,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