home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / autoconf-2.10-base.tgz / autoconf-2.10.tar / fsf / autoconf / testsuite / Makefile.in
Makefile  |  1995-02-07  |  2KB  |  79 lines

  1. # Makefile for Autoconf test suite.
  2. # Copyright (C) 1994 Free Software Foundation, Inc.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #### Start of system configuration section. ####
  19.  
  20. top_srcdir = @top_srcdir@
  21. srcdir = @srcdir@
  22. VPATH = @srcdir@
  23.  
  24. M4 = @M4@
  25.  
  26. prefix = @prefix@
  27. exec_prefix = @exec_prefix@
  28.  
  29. AUTOCONF = ../autoconf
  30. AUTOCONFFLAGS = -m $(top_srcdir)
  31.  
  32. RUNTEST= runtest
  33. RUNTESTFLAGS=
  34.  
  35. #### End of system configuration section. ####
  36.  
  37. SHELL = /bin/sh
  38.  
  39. all:
  40. info:
  41. dvi:
  42.  
  43. check: site.exp all
  44.     @echo This only works if you have the DejaGNU runtest program installed...
  45.     $(RUNTEST) $(RUNTESTFLAGS) --tool autoconf AUTOCONF=${AUTOCONF} \
  46.     AUTOCONFFLAGS="${AUTOCONFFLAGS}" --srcdir $(srcdir)
  47.  
  48. installcheck:
  49.  
  50. site.exp: Makefile
  51.     @echo "Making a new site.exp file..."
  52.     -@rm -f site.bak
  53.     -@mv site.exp site.bak
  54.     @echo "## these variables are automatically generated by make ##" > site.exp
  55.     @echo "# Do not edit here. If you wish to override these values" >> site.exp
  56.     @echo "# add them to the last section" >> site.exp
  57.     @echo "set tool autoconf" >> site.exp
  58.     @echo "set srcdir ${srcdir}" >> site.exp
  59.     @echo "set objdir `pwd`" >> site.exp
  60.     @echo "## All variables above are generated by configure. Do Not Edit ##" >> site.exp
  61.     -@sed '1,/^## All variables above are.*##/ d' site.bak >> site.exp
  62.  
  63. install:
  64.  
  65. install-info:
  66.  
  67. uninstall:
  68.  
  69. Makefile: Makefile.in ../config.status
  70.     cd ..; ./config.status
  71.  
  72. clean mostlyclean distclean maintainer-clean::
  73.     rm -f autoconf.log autoconf.sum site.exp site.bak AC* confdummy* 
  74.  
  75. distclean maintainer-clean::
  76.     rm -f Makefile config.status config.cache config.log
  77.  
  78. TAGS:
  79.