diff options
author | David Lamparter <equinox@diac24.net> | 2020-04-15 10:27:49 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-04-27 09:52:41 +0200 |
commit | 94cfb0692e0499e7ba40908db5259cd19c0e3d5e (patch) | |
tree | 21dea4bef030b2e9170029235fe2385bda5cf90f /pbrd | |
parent | tools/symalyzer: fix copypasta (diff) | |
download | frr-94cfb0692e0499e7ba40908db5259cd19c0e3d5e.tar.xz frr-94cfb0692e0499e7ba40908db5259cd19c0e3d5e.zip |
build: make clippy Makefile rules nicer
These are easy to get subtly wrong, and doing so can cause
nondeterministic failures when racing in parallel builds.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pbrd')
-rw-r--r-- | pbrd/subdir.am | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/pbrd/subdir.am b/pbrd/subdir.am index 45001de2c..42f279988 100644 --- a/pbrd/subdir.am +++ b/pbrd/subdir.am @@ -33,11 +33,10 @@ noinst_HEADERS += \ pbrd/pbr_vrf.h \ # end -pbrd/pbr_vty_clippy.c: $(CLIPPY_DEPS) -pbrd/pbr_vty.$(OBJEXT): pbrd/pbr_vty_clippy.c - -pbrd/pbr_debug_clippy.c: $(CLIPPY_DEPS) -pbrd/pbr_debug.$(OBJEXT): pbrd/pbr_debug_clippy.c +clippy_scan += \ + pbrd/pbr_debug.c \ + pbrd/pbr_vty.c \ + # end pbrd_pbrd_SOURCES = pbrd/pbr_main.c pbrd_pbrd_LDADD = pbrd/libpbr.a lib/libfrr.la $(LIBCAP) |