diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2017-08-04 10:36:34 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2017-08-04 11:13:55 +0200 |
commit | 70d27c5b7decb53c27543a0d58f7cd1dcda3ba44 (patch) | |
tree | d208609474bac2200bbb3df2d0c82ca658a24445 /tests | |
parent | build: pre-generate built headers in configure (diff) | |
download | frr-70d27c5b7decb53c27543a0d58f7cd1dcda3ba44.tar.xz frr-70d27c5b7decb53c27543a0d58f7cd1dcda3ba44.zip |
build: clean up BUILT_SOURCES
BUILT_SOURCES doesn't do what the name suggests. What it actually means
is "these files should be built first when doing a 'make' without
explicit target" (or "make all").
It's pretty much almost always wrong to use BUILT_SOURCES, the only
correct use is when a file is needed by an unspecified / large set of
files.
Also remove version.h and route_types.h from dist tarball while we're at
it. configure will create them anyway.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 0c31c0441..59ea3c4c6 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -85,9 +85,7 @@ lib/cli/test_commands_defun.c: ../vtysh/vtysh_cmd.c isisd/test_fuzz_isis_tlv_tests.h: $(top_srcdir)/tests/isisd/test_fuzz_isis_tlv_tests.h.gz gzip -d < $(top_srcdir)/tests/isisd/test_fuzz_isis_tlv_tests.h.gz > "$@" - -BUILT_SOURCES = \ - lib/cli/test_commands_defun.c \ +isisd/isisd_test_fuzz_isis_tlv-test_fuzz_isis_tlv.$(OBJEXT): \ isisd/test_fuzz_isis_tlv_tests.h noinst_HEADERS = \ |