summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-09-04 14:20:41 -0400
committerTavian Barnes <tavianator@tavianator.com>2016-09-04 14:25:10 -0400
commit3cce36f24f02146986c11cd9ef6381e36952f866 (patch)
tree170e16ecf9abb73eb9d2db4e65b67017e65fdeb3 /Makefile
parent69df7d53ed702334a21590e5b91f20bbafab206a (diff)
downloadbfs-3cce36f24f02146986c11cd9ef6381e36952f866.tar.xz
Implement typo detection for literals.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d2373b4..b80873d 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ ALL_LDFLAGS = $(ALL_CFLAGS) $(LDFLAGS)
all: bfs
-bfs: bftw.o color.o dstring.o eval.o main.o parse.o
+bfs: bftw.o color.o dstring.o eval.o main.o parse.o typo.o
$(CC) $(ALL_LDFLAGS) $^ -o $@
release: CFLAGS := -O3 -flto -Wall -DNDEBUG