summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-04-13 21:05:27 -0400
committerTavian Barnes <tavianator@tavianator.com>2016-04-13 21:05:27 -0400
commitf108e0952615e08a304d4e8564789d3534233e69 (patch)
tree27d160f84d91e4c7963d93b2c4d4e4a0ce62d234 /Makefile
parent185ae8494bfd82757dc25b0ad92ddd833415c0ad (diff)
downloadbfs-f108e0952615e08a304d4e8564789d3534233e69.tar.xz
dstring: Split out the dynamic string logic.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01aec38..84bf484 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ ALL_LDFLAGS = $(ALL_CFLAGS) $(LDFLAGS)
all: bfs
-bfs: bftw.o color.o eval.o main.o parse.o
+bfs: bftw.o color.o dstring.o eval.o main.o parse.o
$(CC) $(ALL_LDFLAGS) $^ -o $@
release: CFLAGS := -O3 -flto -Wall -DNDEBUG