home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / find-3.8-src.lha / src / build / find-3.8 / find / Makefile
Encoding:
Makefile  |  1994-02-23  |  1.8 KB  |  67 lines

  1. # Generated automatically from Makefile.in by configure.
  2. # Makefile for GNU find.
  3. # Do not use this makefile directly, but only from `../Makefile'.
  4. # Copyright (C) 1990 Free Software Foundation, Inc.
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10.  
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15.  
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. SHELL = /bin/sh
  21.  
  22. srcdir = /ISO/find/find-3.8-amiga/find
  23. VPATH = /ISO/find/find-3.8-amiga/find
  24.  
  25. SOURCES = find.c fstype.c parser.c pred.c tree.c util.c version.c
  26. OBJECTS = find.o fstype.o parser.o pred.o tree.o util.o version.o
  27. DISTFILES = Makefile.in defs.h $(SOURCES)
  28.  
  29. all:    find
  30.  
  31. .c.o:
  32.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(DEFS) -I$(srcdir)/../lib $<
  33.  
  34. install: all
  35.     $(INSTALL_PROGRAM) find $(bindir)/$(binprefix)find
  36.  
  37. uninstall:
  38.     rm -f $(bindir)/$(binprefix)find
  39.  
  40. TAGS: $(SOURCES)
  41.     etags $(SOURCES)
  42.  
  43. clean:
  44.     rm -f find *.o core
  45.  
  46. mostlyclean: clean
  47.  
  48. distclean: clean
  49.     rm -f Makefile
  50.  
  51. realclean: distclean
  52.     rm -f TAGS
  53.  
  54. dist:
  55.     ln $(DISTFILES) ../`cat ../.fname`/find
  56.  
  57. find:    $(OBJECTS) ../lib/libfind.a
  58.     $(CC) -o $@ $(LDFLAGS) $(OBJECTS) ../lib/libfind.a $(LIBS)
  59.  
  60. parser.o: ../lib/modechange.h
  61. find.o fstype.o parser.o pred.o: ../lib/modetype.h
  62. find.o parser.o pred.o tree.o util.o: defs.h 
  63. pred.o: ../lib/wait.h
  64.  
  65. # Prevent GNU make v3 from overflowing arg limit on SysV.
  66. .NOEXPORT:
  67.