home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / m4-1.1-src.lha / src / amiga / m4-1.1 / checks / Makefile.in < prev   
Encoding:
Makefile  |  1993-11-08  |  1.5 KB  |  60 lines

  1. # Makefile for GNU m4 checks directory.
  2. # Copyright (C) 1992, 1993 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. VPATH = @srcdir@
  22.  
  23. # Should be GNU awk, for the get-them script.
  24. AWK = @AWK@
  25.  
  26. CHECKS = [0-9][0-9].*
  27. DISTFILES = Makefile.in get-them check-them $(CHECKS) .all-stamp incl.m4 foo
  28.  
  29. all: .all-stamp
  30.  
  31. .all-stamp: get-them ../m4.texinfo
  32.     cd $(srcdir); rm -f $(CHECKS); \
  33.         AWK=$(AWK) $(SHELL) get-them ../m4.texinfo
  34.     touch $(srcdir)/.all-stamp
  35.  
  36. install:
  37.  
  38. uninstall:
  39.  
  40. check: check-them .all-stamp
  41.     cd $(srcdir); $(SHELL) check-them $(CHECKS)
  42.  
  43. tags:
  44.  
  45. clean:
  46.  
  47. distclean: clean
  48.     rm -f Makefile
  49.  
  50. realclean: distclean
  51.     rm -f $(CHECKS) .all-stamp
  52.  
  53. dist: $(DISTFILES)
  54.     mkdir ../`cat ../.fname`/checks
  55.     chmod 777 ../`cat ../.fname`/checks
  56.     ln $(DISTFILES) ../`cat ../.fname`/checks
  57.  
  58. Makefile: Makefile.in
  59.     cd ..; ./config.status
  60.