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

  1. # Makefile for GNU m4 library.
  2. # Copyright (C) 1992, 1993, 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. PRODUCT = @PRODUCT@
  19. VERSION = @VERSION@
  20.  
  21. SHELL = /bin/sh
  22. srcdir = @srcdir@
  23. VPATH = @srcdir@
  24.  
  25. AR = ar
  26. CC = @CC@
  27. CFLAGS = @CFLAGS@
  28. CPPFLAGS = @CPPFLAGS@
  29. DEFS = @DEFS@
  30. RANLIB = @RANLIB@
  31.  
  32. COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
  33.  
  34. .SUFFIXES:
  35. .SUFFIXES: .c .o
  36. .c.o:
  37.     $(COMPILE) $<
  38.  
  39. INCLUDES = -I.. -I$(srcdir)
  40.  
  41. HEADERS = getopt.h obstack.h regex.h
  42. SOURCES = regex.c getopt.c getopt1.c error.c obstack.c xmalloc.c \
  43. xstrdup.c alloca.c strtol.c
  44. OBJECTS = regex.o getopt.o getopt1.o error.o obstack.o xmalloc.o \
  45. xstrdup.o @ALLOCA@ @LIBOBJS@
  46.  
  47. DISTFILES = COPYING.LIB Makefile.in $(HEADERS) $(SOURCES) \
  48. TAGS
  49.  
  50. all: libm4.a
  51.  
  52. libm4.a: $(OBJECTS)
  53.     rm -f libm4.a
  54.     $(AR) cru libm4.a $(OBJECTS)
  55.     $(RANLIB) libm4.a
  56.  
  57. $(OBJECTS): ../config.h
  58.  
  59. install: all
  60.  
  61. uninstall:
  62.  
  63. tags: TAGS
  64.  
  65. TAGS: $(HEADERS) $(SOURCES)
  66.     cd $(srcdir) && etags $(HEADERS) $(SOURCES)
  67.  
  68. mostlyclean:
  69.     rm -f *.o
  70.  
  71. clean: mostlyclean
  72.     rm -f libm4.a
  73.  
  74. distclean: clean
  75.     rm -f Makefile
  76.  
  77. realclean: distclean
  78.     rm -f TAGS
  79.  
  80. dist: $(DISTFILES)
  81.     @echo "Copying distribution files"
  82.     @for file in $(DISTFILES); do \
  83.       ln $(srcdir)/$$file ../$(PRODUCT)-$(VERSION)/lib 2> /dev/null \
  84.         || cp -p $(srcdir)/$$file ../$(PRODUCT)-$(VERSION)/lib; \
  85.     done
  86.  
  87. Makefile: Makefile.in ../config.status
  88.     cd .. && CONFIG_FILES=lib/$@ CONFIG_HEADERS= ./config.status
  89.  
  90. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  91. # Otherwise a system limit (for SysV at least) may be exceeded.
  92. .NOEXPORT:
  93.