summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-01-18 12:05:18 +1100
committerDarren Tucker <dtucker@zip.com.au>2005-01-18 12:05:18 +1100
commit72c025d9f0f494d6816f045819b9be05fc915730 (patch)
treeafa1c48263bb64c391817e15d85e518a2363b862 /Makefile.in
parent5caa78b1b7f086329b2102821a1e09512740dd61 (diff)
- (dtucker) [INSTALL Makefile.in configure.ac survey.sh.in] Implement
"make survey" and "make send-survey". This will provide data on the configure parameters, platform and platform features to the development team, which will allow (among other things) better targetting of testing. It's entirely voluntary and is off be default. ok djm@
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in15
1 files changed, 12 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 940e686b0..8a1c9f7c0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.266 2004/11/07 09:14:34 dtucker Exp $ 1# $Id: Makefile.in,v 1.267 2005/01/18 01:05:18 dtucker 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@
@@ -195,13 +195,13 @@ moduli:
195 195
196clean: regressclean 196clean: regressclean
197 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 197 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
198 rm -f *.out core 198 rm -f *.out core survey
199 (cd openbsd-compat && $(MAKE) clean) 199 (cd openbsd-compat && $(MAKE) clean)
200 200
201distclean: regressclean 201distclean: regressclean
202 rm -f *.o *.a $(TARGETS) logintest config.cache config.log 202 rm -f *.o *.a $(TARGETS) logintest config.cache config.log
203 rm -f *.out core opensshd.init 203 rm -f *.out core opensshd.init
204 rm -f Makefile buildpkg.sh config.h config.status ssh_prng_cmds *~ 204 rm -f Makefile buildpkg.sh config.h config.status ssh_prng_cmds survey.sh *~
205 rm -rf autom4te.cache 205 rm -rf autom4te.cache
206 (cd openbsd-compat && $(MAKE) distclean) 206 (cd openbsd-compat && $(MAKE) distclean)
207 (cd scard && $(MAKE) distclean) 207 (cd scard && $(MAKE) distclean)
@@ -411,6 +411,15 @@ regressclean:
411 (cd regress && $(MAKE) clean) \ 411 (cd regress && $(MAKE) clean) \
412 fi 412 fi
413 413
414survey: survey.sh ssh
415 @$(SHELL) ./survey.sh > survey
416 @echo 'The survey results have been placed in the file "survey" in the'
417 @echo 'current directory. Please review the file then send with'
418 @echo '"make send-survey".'
419
420send-survey: survey
421 mail portable-survey@mindrot.org <survey
422
414package: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS) 423package: $(CONFIGFILES) ssh_prng_cmds.out $(MANPAGES) $(TARGETS)
415 if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \ 424 if [ "@MAKE_PACKAGE_SUPPORTED@" = yes ]; then \
416 sh buildpkg.sh; \ 425 sh buildpkg.sh; \