diff options
author | Damien Miller <djm@google.com> | 2014-12-22 06:30:42 +0100 |
---|---|---|
committer | Damien Miller <djm@google.com> | 2014-12-22 22:38:12 +0100 |
commit | 293cac52dcda123244b2e594d15592e5e481c55e (patch) | |
tree | 71bf4c530501609978a2a00bfa09fde01e4e9d61 /Makefile.in | |
parent | upstream commit (diff) | |
download | openssh-293cac52dcda123244b2e594d15592e5e481c55e.tar.xz openssh-293cac52dcda123244b2e594d15592e5e481c55e.zip |
include and use OpenBSD netcat in regress/
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 06be3d5d5..9b485fba8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -436,6 +436,10 @@ regress/setuid-allowed$(EXEEXT): $(srcdir)/regress/setuid-allowed.c $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $? \ $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) +regress/netcat$(EXEEXT): $(srcdir)/regress/netcat.c + $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $? \ + $(LDFLAGS) -lssh -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) + UNITTESTS_TEST_HELPER_OBJS=\ regress/unittests/test_helper/test_helper.o \ regress/unittests/test_helper/fuzz.o @@ -476,6 +480,7 @@ regress/unittests/sshkey/test_sshkey$(EXEEXT): ${UNITTESTS_TEST_SSHKEY_OBJS} \ REGRESS_BINARIES=\ regress/modpipe$(EXEEXT) \ regress/setuid-allowed$(EXEEXT) \ + regress/netcat$(EXEEXT) \ regress/unittests/sshbuf/test_sshbuf$(EXEEXT) \ regress/unittests/sshkey/test_sshkey$(EXEEXT) |