home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / tar-1.11.8-src.tgz / tar.out / fsf / tar / scripts / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  2KB  |  61 lines

  1. # Makefile for GNU tar scripts.
  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. PACKAGE = @PACKAGE@
  19. VERSION = @VERSION@
  20.  
  21. SHELL = /bin/sh
  22. VPATH = @srcdir@
  23. srcdir = @srcdir@
  24. subdir = scripts
  25.  
  26. .SUFFIXES:
  27.  
  28. DISTFILES = Makefile.in WARNING \
  29. backup-specs dump-remind level-0 level-1 weekly.new
  30.  
  31. all:
  32.  
  33. install:
  34.  
  35. uninstall:
  36.  
  37. mostlyclean:
  38.  
  39. clean: mostlyclean
  40.  
  41. distclean: clean
  42.     rm -f Makefile
  43.  
  44. maintainer-clean: distclean
  45.     @echo "This command is intended only for maintainers to use;"
  46.     @echo "rebuilding the deleted files may require special tools."
  47.  
  48. distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
  49. dist: $(DISTFILES)
  50.     for file in $(DISTFILES); do \
  51.       ln $(srcdir)/$$file $(distdir) 2> /dev/null \
  52.         || cp -p $(srcdir)/$$file $(distdir); \
  53.     done
  54.  
  55. Makefile: Makefile.in ../config.status
  56.     cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  57.  
  58. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  59. # Otherwise a system limit (for SysV at least) may be exceeded.
  60. .NOEXPORT:
  61.