diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2015-11-29 12:00:05 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2015-11-29 12:00:05 -0500 |
commit | da51ac27f1849ad94753277650435ae482a0423f (patch) | |
tree | d194bda63df14c5ec6bd32601d8a7db189f6c39e /Makefile | |
parent | f81be72020a886b5eca21bc1d8a5b0d62b9954d9 (diff) | |
download | bfs-da51ac27f1849ad94753277650435ae482a0423f.tar.xz |
Split out parsing code.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ ALL_LDFLAGS = $(ALL_CFLAGS) $(LDFLAGS) all: bfs -bfs: bfs.o bftw.o color.o +bfs: bftw.o color.o eval.o main.o parse.o $(CC) $(ALL_LDFLAGS) $^ -o $@ %.o: %.c |