summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2016-03-08 14:12:58 -0800
committerDamien Miller <djm@mindrot.org>2016-03-08 14:12:58 -0800
commit7b40ef6c2eef40c339f6ea8920cb8a44838e10c9 (patch)
tree7c71d7707d1d72b4b03d2cbbf2cbbb7a9a24166d /Makefile.in
parentc425494d6b6181beb54a1b3763ef9e944fd3c214 (diff)
make a regress-binaries target
Easier to build all the regression/unit test binaries in one pass than going through all of ${REGRESS_BINARIES}
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 84c3c6c16..139e20a8c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -516,8 +516,7 @@ regress/misc/kexfuzz/kexfuzz$(EXEEXT): ${MISC_KEX_FUZZ_OBJS} libssh.a
516 $(LD) -o $@ $(LDFLAGS) $(MISC_KEX_FUZZ_OBJS) \ 516 $(LD) -o $@ $(LDFLAGS) $(MISC_KEX_FUZZ_OBJS) \
517 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) 517 -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS)
518 518
519REGRESS_BINARIES=\ 519regress-binaries: regress/modpipe$(EXEEXT) \
520 regress/modpipe$(EXEEXT) \
521 regress/setuid-allowed$(EXEEXT) \ 520 regress/setuid-allowed$(EXEEXT) \
522 regress/netcat$(EXEEXT) \ 521 regress/netcat$(EXEEXT) \
523 regress/check-perm$(EXEEXT) \ 522 regress/check-perm$(EXEEXT) \
@@ -528,7 +527,7 @@ REGRESS_BINARIES=\
528 regress/unittests/kex/test_kex$(EXEEXT) \ 527 regress/unittests/kex/test_kex$(EXEEXT) \
529 regress/misc/kexfuzz/kexfuzz$(EXEEXT) 528 regress/misc/kexfuzz/kexfuzz$(EXEEXT)
530 529
531tests interop-tests t-exec: regress-prep $(TARGETS) $(REGRESS_BINARIES) 530tests interop-tests t-exec: regress-prep regress-binaries $(TARGETS)
532 BUILDDIR=`pwd`; \ 531 BUILDDIR=`pwd`; \
533 TEST_SSH_SCP="$${BUILDDIR}/scp"; \ 532 TEST_SSH_SCP="$${BUILDDIR}/scp"; \
534 TEST_SSH_SSH="$${BUILDDIR}/ssh"; \ 533 TEST_SSH_SSH="$${BUILDDIR}/ssh"; \