home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 113 / EnigmaAmiga113CD.iso / software / sviluppo / sed-3.02 / sed / makefile.in < prev    next >
Encoding:
Makefile  |  1998-08-01  |  6.9 KB  |  274 lines

  1. # Makefile.in generated automatically by automake 1.3 from Makefile.am
  2.  
  3. # Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7.  
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  10. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  11. # PARTICULAR PURPOSE.
  12.  
  13.  
  14. SHELL = /bin/sh
  15.  
  16. srcdir = @srcdir@
  17. top_srcdir = @top_srcdir@
  18. VPATH = @srcdir@
  19. prefix = @prefix@
  20. exec_prefix = @exec_prefix@
  21.  
  22. bindir = @bindir@
  23. sbindir = @sbindir@
  24. libexecdir = @libexecdir@
  25. datadir = @datadir@
  26. sysconfdir = @sysconfdir@
  27. sharedstatedir = @sharedstatedir@
  28. localstatedir = @localstatedir@
  29. libdir = @libdir@
  30. infodir = @infodir@
  31. mandir = @mandir@
  32. includedir = @includedir@
  33. oldincludedir = /usr/include
  34.  
  35. DISTDIR =
  36.  
  37. pkgdatadir = $(datadir)/@PACKAGE@
  38. pkglibdir = $(libdir)/@PACKAGE@
  39. pkgincludedir = $(includedir)/@PACKAGE@
  40.  
  41. top_builddir = ..
  42.  
  43. ACLOCAL = @ACLOCAL@
  44. AUTOCONF = @AUTOCONF@
  45. AUTOMAKE = @AUTOMAKE@
  46. AUTOHEADER = @AUTOHEADER@
  47.  
  48. INSTALL = @INSTALL@
  49. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  50. INSTALL_DATA = @INSTALL_DATA@
  51. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  52. transform = @program_transform_name@
  53.  
  54. NORMAL_INSTALL = :
  55. PRE_INSTALL = :
  56. POST_INSTALL = :
  57. NORMAL_UNINSTALL = :
  58. PRE_UNINSTALL = :
  59. POST_UNINSTALL = :
  60. CC = @CC@
  61. MAKEINFO = @MAKEINFO@
  62. PACKAGE = @PACKAGE@
  63. RANLIB = @RANLIB@
  64. VERSION = @VERSION@
  65.  
  66. bin_PROGRAMS = sed
  67.  
  68. sed_SOURCES = sed.c compile.c execute.c utils.c
  69. noinst_HEADERS = basicdefs.h regex-sed.h sed.h utils.h
  70.  
  71. INCLUDES = -I$(top_srcdir)/lib
  72.  
  73. LDADD = ../lib/libsed.a
  74. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  75. CONFIG_HEADER = ../config.h
  76. CONFIG_CLEAN_FILES = 
  77. PROGRAMS =  $(bin_PROGRAMS)
  78.  
  79.  
  80. DEFS = @DEFS@ -I. -I$(srcdir) -I..
  81. CPPFLAGS = @CPPFLAGS@
  82. LDFLAGS = @LDFLAGS@
  83. LIBS = @LIBS@
  84. sed_OBJECTS =  sed.o compile.o execute.o utils.o
  85. sed_LDADD = $(LDADD)
  86. sed_DEPENDENCIES =  ../lib/libsed.a
  87. sed_LDFLAGS = 
  88. CFLAGS = @CFLAGS@
  89. COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
  90. LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
  91. HEADERS =  $(noinst_HEADERS)
  92.  
  93. DIST_COMMON =  Makefile.am Makefile.in
  94.  
  95.  
  96. DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
  97.  
  98. TAR = tar
  99. GZIP = --best
  100. SOURCES = $(sed_SOURCES)
  101. OBJECTS = $(sed_OBJECTS)
  102.  
  103. all: Makefile $(PROGRAMS) $(HEADERS)
  104.  
  105. .SUFFIXES:
  106. .SUFFIXES: .S .c .o .s
  107. $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
  108.     cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps sed/Makefile
  109.  
  110. Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
  111.     cd $(top_builddir) \
  112.       && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  113.  
  114.  
  115. mostlyclean-binPROGRAMS:
  116.  
  117. clean-binPROGRAMS:
  118.     -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
  119.  
  120. distclean-binPROGRAMS:
  121.  
  122. maintainer-clean-binPROGRAMS:
  123.  
  124. install-binPROGRAMS: $(bin_PROGRAMS)
  125.     @$(NORMAL_INSTALL)
  126.     $(mkinstalldirs) $(DESTDIR)$(bindir)
  127.     @list='$(bin_PROGRAMS)'; for p in $$list; do \
  128.       if test -f $$p; then \
  129.         echo "  $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
  130.          $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
  131.       else :; fi; \
  132.     done
  133.  
  134. uninstall-binPROGRAMS:
  135.     @$(NORMAL_UNINSTALL)
  136.     list='$(bin_PROGRAMS)'; for p in $$list; do \
  137.       rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
  138.     done
  139.  
  140. .c.o:
  141.     $(COMPILE) -c $<
  142.  
  143. .s.o:
  144.     $(COMPILE) -c $<
  145.  
  146. .S.o:
  147.     $(COMPILE) -c $<
  148.  
  149. mostlyclean-compile:
  150.     -rm -f *.o core *.core
  151.  
  152. clean-compile:
  153.  
  154. distclean-compile:
  155.     -rm -f *.tab.c
  156.  
  157. maintainer-clean-compile:
  158.  
  159. sed: $(sed_OBJECTS) $(sed_DEPENDENCIES)
  160.     @rm -f sed
  161.     $(LINK) $(sed_LDFLAGS) $(sed_OBJECTS) $(sed_LDADD) $(LIBS)
  162.  
  163. tags: TAGS
  164.  
  165. ID: $(HEADERS) $(SOURCES) $(LISP)
  166.     here=`pwd` && cd $(srcdir) \
  167.       && mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)
  168.  
  169. TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
  170.     tags=; \
  171.     here=`pwd`; \
  172.     list='$(SOURCES) $(HEADERS)'; \
  173.     unique=`for i in $$list; do echo $$i; done | \
  174.       awk '    { files[$$0] = 1; } \
  175.            END { for (i in files) print i; }'`; \
  176.     test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
  177.       || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
  178.  
  179. mostlyclean-tags:
  180.  
  181. clean-tags:
  182.  
  183. distclean-tags:
  184.     -rm -f TAGS ID
  185.  
  186. maintainer-clean-tags:
  187.  
  188. distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
  189.  
  190. subdir = sed
  191.  
  192. distdir: $(DISTFILES)
  193.     @for file in $(DISTFILES); do \
  194.       d=$(srcdir); \
  195.       test -f $(distdir)/$$file \
  196.       || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
  197.       || cp -p $$d/$$file $(distdir)/$$file; \
  198.     done
  199. compile.o: compile.c ../config.h regex-sed.h ../lib/regex-gnu.h \
  200.     basicdefs.h utils.h sed.h
  201. execute.o: execute.c ../config.h regex-sed.h ../lib/regex-gnu.h \
  202.     basicdefs.h utils.h sed.h
  203. sed.o: sed.c ../config.h regex-sed.h ../lib/regex-gnu.h ../lib/getopt.h \
  204.     basicdefs.h utils.h sed.h
  205. utils.o: utils.c ../config.h basicdefs.h utils.h
  206.  
  207. info:
  208. dvi:
  209. check: all
  210.     $(MAKE)
  211. installcheck:
  212. install-exec: install-binPROGRAMS
  213.     @$(NORMAL_INSTALL)
  214.  
  215. install-data: 
  216.     @$(NORMAL_INSTALL)
  217.  
  218. install: install-exec install-data all
  219.     @:
  220.  
  221. uninstall: uninstall-binPROGRAMS
  222.  
  223. install-strip:
  224.     $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
  225. installdirs:
  226.     $(mkinstalldirs)  $(DATADIR)$(bindir)
  227.  
  228.  
  229. mostlyclean-generic:
  230.     -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
  231.  
  232. clean-generic:
  233.     -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  234.  
  235. distclean-generic:
  236.     -rm -f Makefile $(DISTCLEANFILES)
  237.     -rm -f config.cache config.log stamp-h stamp-h[0-9]*
  238.     -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  239.  
  240. maintainer-clean-generic:
  241.     -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  242.     -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  243. mostlyclean:  mostlyclean-binPROGRAMS mostlyclean-compile \
  244.         mostlyclean-tags mostlyclean-generic
  245.  
  246. clean:  clean-binPROGRAMS clean-compile clean-tags clean-generic \
  247.         mostlyclean
  248.  
  249. distclean:  distclean-binPROGRAMS distclean-compile distclean-tags \
  250.         distclean-generic clean
  251.     -rm -f config.status
  252.  
  253. maintainer-clean:  maintainer-clean-binPROGRAMS maintainer-clean-compile \
  254.         maintainer-clean-tags maintainer-clean-generic \
  255.         distclean
  256.     @echo "This command is intended for maintainers to use;"
  257.     @echo "it deletes files that may require special tools to rebuild."
  258.  
  259. .PHONY: mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
  260. maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
  261. mostlyclean-compile distclean-compile clean-compile \
  262. maintainer-clean-compile tags mostlyclean-tags distclean-tags \
  263. clean-tags maintainer-clean-tags distdir info dvi installcheck \
  264. install-exec install-data install uninstall all installdirs \
  265. mostlyclean-generic distclean-generic clean-generic \
  266. maintainer-clean-generic clean mostlyclean distclean maintainer-clean
  267.  
  268.  
  269. $(PROGRAMS): $(LDADD)
  270.  
  271. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  272. # Otherwise a system limit (for SysV at least) may be exceeded.
  273. .NOEXPORT:
  274.