diff options
author | Colin Watson <cjwatson@debian.org> | 2013-05-16 13:47:47 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2013-05-16 13:47:47 +0100 |
commit | 79524838f0d5eb1cdf9fc268ec4c0bce46ccb67f (patch) | |
tree | e0fcc573af464fcdf8112f9cd6dd985002fa1489 /Makefile.in | |
parent | b396fa313014ca06e7e694ab01b7c36cba660b0a (diff) | |
parent | ffc06452028ba78cd693d4ed43df8b60a10d6163 (diff) |
Import 6.2p2 tarball
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 62bacd6fc..d327787b0 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.337 2013/03/22 17:14:33 tim Exp $ | 1 | # $Id: Makefile.in,v 1.336 2013/03/07 15:37:13 tim Exp $ |
2 | 2 | ||
3 | # uncomment if you run a non bourne compatable shell. Ie. csh | 3 | # uncomment if you run a non bourne compatable shell. Ie. csh |
4 | #SHELL = @SH@ | 4 | #SHELL = @SH@ |
@@ -382,14 +382,15 @@ uninstall: | |||
382 | -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 | 382 | -rm -f $(DESTDIR)$(mandir)/$(mansubdir)1/slogin.1 |
383 | 383 | ||
384 | regress/modpipe$(EXEEXT): $(srcdir)/regress/modpipe.c | 384 | regress/modpipe$(EXEEXT): $(srcdir)/regress/modpipe.c |
385 | [ -d `pwd`/regress ] || mkdir -p `pwd`/regress | 385 | [ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \ |
386 | [ -f `pwd`/regress/Makefile ] || \ | ||
387 | ln -s `cd $(srcdir) && pwd`/regress/Makefile `pwd`/regress/Makefile | ||
388 | $(CC) $(CPPFLAGS) -o $@ $? \ | 386 | $(CC) $(CPPFLAGS) -o $@ $? \ |
389 | $(LDFLAGS) -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) | 387 | $(LDFLAGS) -lopenbsd-compat -lssh -lopenbsd-compat $(LIBS) |
390 | 388 | ||
391 | tests interop-tests: $(TARGETS) regress/modpipe$(EXEEXT) | 389 | tests interop-tests: $(TARGETS) regress/modpipe$(EXEEXT) |
392 | BUILDDIR=`pwd`; \ | 390 | BUILDDIR=`pwd`; \ |
391 | [ -d `pwd`/regress ] || mkdir -p `pwd`/regress; \ | ||
392 | [ -f `pwd`/regress/Makefile ] || \ | ||
393 | ln -s `cd $(srcdir) && pwd`/regress/Makefile `pwd`/regress/Makefile ; \ | ||
393 | TEST_SHELL="@TEST_SHELL@"; \ | 394 | TEST_SHELL="@TEST_SHELL@"; \ |
394 | TEST_SSH_SSH="$${BUILDDIR}/ssh"; \ | 395 | TEST_SSH_SSH="$${BUILDDIR}/ssh"; \ |
395 | TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \ | 396 | TEST_SSH_SSHD="$${BUILDDIR}/sshd"; \ |