diff options
author | Tim Rice <tim@multitalents.net> | 2004-05-31 06:38:51 +0200 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2004-05-31 06:38:51 +0200 |
commit | 6f1f758cca33555f4f81691d10d3f8996bc6ab45 (patch) | |
tree | 9d9cbccc8fe34d71cbd0662cf9e2036cc900fee5 /Makefile.in | |
parent | - (dtucker) [auth-pam.c] Use an invalid password for root if (diff) | |
download | openssh-6f1f758cca33555f4f81691d10d3f8996bc6ab45.tar.xz openssh-6f1f758cca33555f4f81691d10d3f8996bc6ab45.zip |
- (tim) [configure.ac Makefile.in] Add support for "make package" ok djm@
- (tim) [buildpkg.sh.in] New file. A more flexible version of
contrib/solaris/buildpkg.sh used for "make package".
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 919b36819..45bf44823 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.257 2004/02/18 03:35:11 djm Exp $ +# $Id: Makefile.in,v 1.258 2004/05/31 04:38:51 tim Exp $ # uncomment if you run a non bourne compatable shell. Ie. csh #SHELL = @SH@ @@ -201,10 +201,13 @@ clean: regressclean distclean: regressclean rm -f *.o *.a $(TARGETS) logintest config.cache config.log rm -f *.out core - rm -f Makefile config.h config.status ssh_prng_cmds *~ + rm -f Makefile buildpkg.sh config.h config.status ssh_prng_cmds *~ rm -rf autom4te.cache (cd openbsd-compat && $(MAKE) distclean) (cd scard && $(MAKE) distclean) + if test -d pkg ; then \ + rm -fr pkg ; \ + fi veryclean: distclean rm -f configure config.h.in *.0 @@ -407,3 +410,9 @@ regressclean: if [ -f regress/Makefile -a -r regress/Makefile ]; then \ (cd regress && $(MAKE) clean) \ fi + +package: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) + if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \ + sh buildpkg.sh; \ + fi + |