diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-11-01 21:46:50 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-05-28 20:49:54 -0400 |
commit | fda29616c7af6b6e2a79c596cc01123a2d68ee02 (patch) | |
tree | 04aa6baac9ae4c1cf1afdc33c896bfa9ca97fda4 /Makefile | |
parent | 1cc323eb88242bc7be7177ba4cb037a58c754763 (diff) | |
download | bfs-fda29616c7af6b6e2a79c596cc01123a2d68ee02.tar.xz |
Implement a depth-first mode (-dfs)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -98,7 +98,8 @@ tests/mksock: tests/mksock.o $(CC) $(ALL_CFLAGS) -c $< -o $@ check: all - ./tests.sh + ./tests.sh --bfs="$(realpath bfs)" + ./tests.sh --bfs="$(realpath bfs) -dfs" distcheck: +$(MAKE) -Bs check CFLAGS="$(CFLAGS) -fsanitize=undefined -fsanitize=address" |