mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-12-26 18:14:56 +00:00
commit d771020 "don't build tests unless make check is run" has made the
--{en,dis}able-tests switch completely useless. The differentiation is
now made by running "make check" or not doing so. The only effect of
the switch is an "empty" excursion of make into the tests/ directory.
(well, and it turns "make check" useless from the main directory if
--disable-tests is given, which I don't think makes sense either)
Acked-by: Greg Troxel <gdt@ir.bbn.com>
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
29 lines
769 B
Makefile
29 lines
769 B
Makefile
## Process this file with automake to produce Makefile.in.
|
|
|
|
SUBDIRS = lib @ZEBRA@ @BGPD@ @RIPD@ @RIPNGD@ @OSPFD@ @OSPF6D@ @BABELD@ \
|
|
@ISISD@ @WATCHQUAGGA@ @VTYSH@ @OSPFCLIENT@ @DOC@ m4 @pkgsrcdir@ \
|
|
redhat @SOLARIS@ tests
|
|
|
|
DIST_SUBDIRS = lib zebra bgpd ripd ripngd ospfd ospf6d babeld \
|
|
isisd watchquagga vtysh ospfclient doc m4 pkgsrc redhat tests \
|
|
solaris
|
|
|
|
EXTRA_DIST = aclocal.m4 SERVICES TODO REPORTING-BUGS INSTALL.quagga.txt \
|
|
update-autotools \
|
|
vtysh/Makefile.in vtysh/Makefile.am \
|
|
tools/mrlg.cgi tools/rrcheck.pl tools/rrlookup.pl tools/zc.pl \
|
|
tools/zebra.el tools/multiple-bgpd.sh \
|
|
fpm/fpm.h
|
|
|
|
if HAVE_LATEX
|
|
|
|
HACKING.pdf: HACKING.tex
|
|
$(LATEXMK) -pdf $<
|
|
|
|
clean-local:
|
|
-$(LATEXMK) -C HACKING.tex
|
|
|
|
endif
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|