source: trunk/gcc/boehm-gc/include/Makefile.in@ 3670

Last change on this file since 3670 was 1392, checked in by bird, 22 years ago

This commit was generated by cvs2svn to compensate for changes in r1391,
which included commits to RCS files with non-trunk default branches.

  • Property cvs2svn:cvs-rev set to 1.1.1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 5.8 KB
Line 
1# Makefile.in generated automatically by automake 1.4 from Makefile.am
2
3# Copyright (C) 1994, 1995-8, 1999 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
14SHELL = @SHELL@
15
16srcdir = @srcdir@
17top_srcdir = @top_srcdir@
18VPATH = @srcdir@
19prefix = @prefix@
20exec_prefix = @exec_prefix@
21
22bindir = @bindir@
23sbindir = @sbindir@
24libexecdir = @libexecdir@
25datadir = @datadir@
26sysconfdir = @sysconfdir@
27sharedstatedir = @sharedstatedir@
28localstatedir = @localstatedir@
29libdir = @libdir@
30infodir = @infodir@
31mandir = @mandir@
32includedir = @includedir@
33oldincludedir = /usr/include
34
35DESTDIR =
36
37pkgdatadir = $(datadir)/@PACKAGE@
38pkglibdir = $(libdir)/@PACKAGE@
39pkgincludedir = $(includedir)/@PACKAGE@
40
41top_builddir = ..
42
43ACLOCAL = @ACLOCAL@
44AUTOCONF = @AUTOCONF@
45AUTOMAKE = @AUTOMAKE@
46AUTOHEADER = @AUTOHEADER@
47
48INSTALL = @INSTALL@
49INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
50INSTALL_DATA = @INSTALL_DATA@
51INSTALL_SCRIPT = @INSTALL_SCRIPT@
52transform = @program_transform_name@
53
54NORMAL_INSTALL = :
55PRE_INSTALL = :
56POST_INSTALL = :
57NORMAL_UNINSTALL = :
58PRE_UNINSTALL = :
59POST_UNINSTALL = :
60build_alias = @build_alias@
61build_triplet = @build@
62host_alias = @host_alias@
63host_triplet = @host@
64target_alias = @target_alias@
65target_triplet = @target@
66AR = @AR@
67AS = @AS@
68CC = @CC@
69CPP = @CPP@
70CXX = @CXX@
71CXXCPP = @CXXCPP@
72CXXINCLUDES = @CXXINCLUDES@
73DLLTOOL = @DLLTOOL@
74EXEEXT = @EXEEXT@
75EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
76GCJ = @GCJ@
77GCJFLAGS = @GCJFLAGS@
78GC_CFLAGS = @GC_CFLAGS@
79INCLUDES = @INCLUDES@
80LIBTOOL = @LIBTOOL@
81LN_S = @LN_S@
82MAINT = @MAINT@
83MAKEINFO = @MAKEINFO@
84MY_CFLAGS = @MY_CFLAGS@
85OBJDUMP = @OBJDUMP@
86OBJEXT = @OBJEXT@
87PACKAGE = @PACKAGE@
88RANLIB = @RANLIB@
89STRIP = @STRIP@
90THREADLIBS = @THREADLIBS@
91VERSION = @VERSION@
92addobjs = @addobjs@
93gc_basedir = @gc_basedir@
94mkinstalldirs = @mkinstalldirs@
95target_all = @target_all@
96
97AUTOMAKE_OPTIONS = foreign
98
99noinst_HEADERS = gc.h gc_backptr.h gc_local_alloc.h \
100 gc_pthread_redirects.h gc_cpp.h
101
102CONFIG_CLEAN_FILES =
103HEADERS = $(noinst_HEADERS)
104
105DIST_COMMON = Makefile.am Makefile.in
106
107
108DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
109
110TAR = gtar
111GZIP_ENV = --best
112all: all-redirect
113.SUFFIXES:
114$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
115 cd $(top_srcdir) && $(AUTOMAKE) --cygnus include/Makefile
116
117Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
118 cd $(top_builddir) \
119 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
120
121
122tags: TAGS
123
124ID: $(HEADERS) $(SOURCES) $(LISP)
125 list='$(SOURCES) $(HEADERS)'; \
126 unique=`for i in $$list; do echo $$i; done | \
127 awk ' { files[$$0] = 1; } \
128 END { for (i in files) print i; }'`; \
129 here=`pwd` && cd $(srcdir) \
130 && mkid -f$$here/ID $$unique $(LISP)
131
132TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
133 tags=; \
134 here=`pwd`; \
135 list='$(SOURCES) $(HEADERS)'; \
136 unique=`for i in $$list; do echo $$i; done | \
137 awk ' { files[$$0] = 1; } \
138 END { for (i in files) print i; }'`; \
139 test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
140 || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
141
142mostlyclean-tags:
143
144clean-tags:
145
146distclean-tags:
147 -rm -f TAGS ID
148
149maintainer-clean-tags:
150
151distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
152
153subdir = include
154
155distdir: $(DISTFILES)
156 @for file in $(DISTFILES); do \
157 if test -f $$file; then d=.; else d=$(srcdir); fi; \
158 if test -d $$d/$$file; then \
159 cp -pr $$d/$$file $(distdir)/$$file; \
160 else \
161 test -f $(distdir)/$$file \
162 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
163 || cp -p $$d/$$file $(distdir)/$$file || :; \
164 fi; \
165 done
166info-am:
167info: info-am
168dvi-am:
169dvi: dvi-am
170check-am:
171check: check-am
172installcheck-am:
173installcheck: installcheck-am
174install-info-am:
175install-info: install-info-am
176install-exec-am:
177install-exec: install-exec-am
178
179install-data-am:
180install-data: install-data-am
181
182install-am: all-am
183 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
184install: install-am
185uninstall-am:
186uninstall: uninstall-am
187all-am: Makefile $(HEADERS)
188all-redirect: all-am
189install-strip:
190 $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
191installdirs:
192
193
194mostlyclean-generic:
195
196clean-generic:
197
198distclean-generic:
199 -rm -f Makefile $(CONFIG_CLEAN_FILES)
200 -rm -f config.cache config.log stamp-h stamp-h[0-9]*
201
202maintainer-clean-generic:
203mostlyclean-am: mostlyclean-tags mostlyclean-generic
204
205mostlyclean: mostlyclean-am
206
207clean-am: clean-tags clean-generic mostlyclean-am
208
209clean: clean-am
210
211distclean-am: distclean-tags distclean-generic clean-am
212 -rm -f libtool
213
214distclean: distclean-am
215
216maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
217 distclean-am
218 @echo "This command is intended for maintainers to use;"
219 @echo "it deletes files that may require special tools to rebuild."
220
221maintainer-clean: maintainer-clean-am
222
223.PHONY: tags mostlyclean-tags distclean-tags clean-tags \
224maintainer-clean-tags distdir info-am info dvi-am dvi check check-am \
225installcheck-am installcheck install-info-am install-info \
226install-exec-am install-exec install-data-am install-data install-am \
227install uninstall-am uninstall all-redirect all-am all installdirs \
228mostlyclean-generic distclean-generic clean-generic \
229maintainer-clean-generic clean mostlyclean distclean maintainer-clean
230
231
232# Tell versions [3.59,3.63) of GNU make to not export all variables.
233# Otherwise a system limit (for SysV at least) may be exceeded.
234.NOEXPORT:
Note: See TracBrowser for help on using the repository browser.