home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / findutils-4.1-src.lha / findutils-4.1 / testsuite / Makefile.in < prev   
Encoding:
Makefile  |  1994-11-17  |  3.8 KB  |  122 lines

  1. # Makefile.in generated automatically by automake from Makefile.am.
  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. SHELL = /bin/sh
  19.  
  20. srcdir = @srcdir@
  21. top_srcdir = @top_srcdir@
  22. VPATH = @srcdir@
  23. prefix = @prefix@
  24. exec_prefix = @exec_prefix@
  25.  
  26. bindir = $(exec_prefix)/bin
  27. sbindir = $(exec_prefix)/sbin
  28. datadir = $(prefix)/share
  29. sysconfdir = $(prefix)/etc
  30. sharedstatedir = $(prefix)/com
  31. # Put this in /local, since $(prefix) might be on read-only media. -fnf
  32. localstatedir = /local/var
  33. libdir = $(exec_prefix)/lib
  34. # It seems hokey to me to have the libexec dir visible at what is the
  35. # equivalent of the root directory, so put it under libdir instead.  -fnf
  36. libexecdir = $(libdir)/libexec
  37. infodir = $(prefix)/info
  38. mandir = $(prefix)/man
  39. includedir = $(prefix)/include
  40. oldincludedir = /usr/include
  41.  
  42. INSTALL = @INSTALL@
  43. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  44. INSTALL_DATA = @INSTALL_DATA@
  45. transform = @program_transform_name@
  46.  
  47. ALL = ${PROGRAMS} ${LIBPROGRAMS} ${SCRIPTS} ${LIBSCRIPTS} ${LIBFILES}
  48. SOURCES = 
  49. DIST_CONF = Makefile.am Makefile.in
  50. DIST_FILES = $(DIST_CONF) $(SOURCES) $(TEXINFOS) $(INFOS) $(MANS) $(DIST_OTHER)
  51.  
  52. XARGS = ../xargs/xargs
  53. XARGSFLAGS =
  54.  
  55. RUNTEST= runtest
  56. RUNTESTFLAGS=
  57.  
  58. DIST_OTHER = config/*.exp inputs/*.xi xargs.*/*.exp xargs.*/*.xo
  59. DIST_DIRS = config inputs xargs.gnu xargs.posix xargs.sysv
  60.  
  61. CLEANFILES = *.log *.sum site.exp site.bak
  62.  
  63. all:: ${ALL}
  64.  
  65. mostlyclean:
  66.     rm -f *.o core
  67.  
  68. clean: mostlyclean
  69.     rm -f $(PROGRAMS) $(LIBPROGRAMS) $(LIBFILES) $(TEXFILES) $(CLEANFILES)
  70.  
  71. distclean: clean
  72.     rm -f Makefile *.tab.c $(DISTCLEANFILES)
  73.     rm -f config.cache config.log config.status ${CONFIG_HEADER} stamp-h
  74.  
  75. realclean: distclean
  76.     rm -f TAGS $(INFOS)
  77.  
  78. dist: $(DIST_FILES) $(DIST_DIRS)
  79.     -mkdir ../`cat ../distname`/$(subdir)
  80.     @for file in $(DIST_FILES); do \
  81.       echo linking $$file; \
  82.       ln $(srcdir)/$$file ../`cat ../distname`/$(subdir)/$$file || \
  83.         { echo copying $$file instead; cp -p $(srcdir)/$$file ../`cat ../distname`/$(subdir)/$$file;}; \
  84.     done
  85.  
  86. check dvi info install uninstall::
  87.  
  88. tags:: TAGS
  89.  
  90. TAGS::
  91.     cd $(srcdir); etags $(SOURCES)
  92.  
  93. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  94. # Otherwise a system limit (for SysV at least) may be exceeded.
  95. .NOEXPORT:
  96.  
  97. check:: site.exp
  98.     @echo This only works if you have the DejaGNU runtest program installed...
  99.     $(RUNTEST) $(RUNTESTFLAGS) --tool xargs XARGS=${XARGS} \
  100.     XARGSFLAGS="${XARGSFLAGS}" --srcdir $(srcdir)
  101.  
  102. site.exp:
  103.     @echo "Making a new site.exp file..."
  104.     -@rm -f site.bak
  105.     -@mv site.exp site.bak
  106.     @echo "## these variables are automatically generated by make ##" > site.exp
  107.     @echo "# Do not edit here. If you wish to override these values" >> site.exp
  108.     @echo "# add them to the last section" >> site.exp
  109.     @echo "set tool xargs" >> site.exp
  110.     @echo "set srcdir ${srcdir}" >> site.exp
  111.     @echo "set objdir `pwd`" >> site.exp
  112.     @echo "## All variables above are generated by configure. Do Not Edit ##" >> site.exp
  113.     -@sed '1,/^## All variables above are.*##/ d' site.bak >> site.exp
  114.  
  115. $(DIST_DIRS): FORCE
  116.     -mkdir ../`cat ../distname`/$(subdir)
  117.     -for d in $(DIST_DIRS); do \
  118.     echo mkdir ../`cat ../distname`/$(subdir)/$$d; \
  119.     mkdir ../`cat ../distname`/$(subdir)/$$d; done
  120.  
  121. FORCE:
  122.