diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-09-04 14:20:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-09-04 14:25:10 -0400 |
commit | 3cce36f24f02146986c11cd9ef6381e36952f866 (patch) | |
tree | 170e16ecf9abb73eb9d2db4e65b67017e65fdeb3 /Makefile | |
parent | 69df7d53ed702334a21590e5b91f20bbafab206a (diff) | |
download | bfs-3cce36f24f02146986c11cd9ef6381e36952f866.tar.xz |
Implement typo detection for literals.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |