diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-09-16 12:25:16 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-09-16 12:25:16 -0400 |
commit | 25fab2c717ac72a69d11c7190df0563b082808b0 (patch) | |
tree | 54e5deb63c432b501f2f2b49f594cd261b649eaf /Makefile | |
parent | 1db02c9ee890d6b5fda25444243c40f9d2bb9906 (diff) | |
download | bfs-25fab2c717ac72a69d11c7190df0563b082808b0.tar.xz |
opt: Separate optimization from parsing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ ALL_LDFLAGS = $(ALL_CFLAGS) $(LDFLAGS) all: bfs -bfs: bftw.o color.o dstring.o eval.o exec.o main.o mtab.o parse.o printf.o typo.o util.o +bfs: bftw.o color.o dstring.o eval.o exec.o main.o mtab.o opt.o parse.o printf.o typo.o util.o $(CC) $(ALL_LDFLAGS) $^ -o $@ release: CFLAGS := -O3 -flto $(WFLAGS) -DNDEBUG -g |