home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / find-3.8-src.lha / src / amiga / find-3.8 / xargs / Makefile.in next >
Encoding:
Makefile  |  1992-09-11  |  1.5 KB  |  63 lines

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