source: rtems/scripts/Makefile.in @ 10629f7

4.104.114.84.95
Last change on this file since 10629f7 was 10629f7, checked in by Joel Sherrill <joel.sherrill@…>, on 10/20/99 at 15:29:12

New version from Ralf.

  • Property mode set to 100644
File size: 10.4 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 = :
60BINUTILSVERS = @BINUTILSVERS@
61GCCNEWLIBVERS = @GCCNEWLIBVERS@
62GDBVERS = @GDBVERS@
63MAKEINFO = @MAKEINFO@
64PACKAGE = @PACKAGE@
65RPM_SPECSdir = @RPM_SPECSdir@
66VERSION = @VERSION@
67
68AUTOMAKE_OPTIONS = foreign
69
70SUBDIRS = . binutils gccnewlib
71
72noinst_SCRIPTS =  setup buildall mkbinutils_subpackage_version mkbinutilspec mkbspspec mkgccnewlibspec mkgdbspec mkrpms mkspec mktoolspec
73
74
75TEMPLATES =  gccnewlib.spec.in gdb.spec.in rtems.spec.in toolchain.spec.in
76
77
78noinst_DATA =  setup.def $(TEMPLATES)
79
80
81EXTRA_DIST =  $(noinst_DATA) $(noinst_SCRIPTS)
82
83
84CONFIGURE_DEPENDENCIES = setup.cache
85
86DISTCLEANFILES = setup.cache
87ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
88mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
89CONFIG_CLEAN_FILES =  mkbinutilspec mkgccnewlibspec
90SCRIPTS =  $(noinst_SCRIPTS)
91
92DATA =  $(noinst_DATA)
93
94DIST_COMMON =  README Makefile.am Makefile.in TODO aclocal.m4 configure \
95configure.in install-sh missing mkbinutilspec.in mkgccnewlibspec.in \
96mkinstalldirs
97
98
99DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
100
101TAR = tar
102GZIP_ENV = --best
103all: all-redirect
104.SUFFIXES:
105$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
106        cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps Makefile
107
108Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
109        cd $(top_builddir) \
110          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
111
112$(ACLOCAL_M4):  configure.in
113        cd $(srcdir) && $(ACLOCAL)
114
115config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
116        $(SHELL) ./config.status --recheck
117$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
118        cd $(srcdir) && $(AUTOCONF)
119mkbinutilspec: $(top_builddir)/config.status mkbinutilspec.in
120        cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
121mkgccnewlibspec: $(top_builddir)/config.status mkgccnewlibspec.in
122        cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
123
124# This directory's subdirectories are mostly independent; you can cd
125# into them and run `make' without going through this Makefile.
126# To change the values of `make' variables: instead of editing Makefiles,
127# (1) if the variable is set in `config.status', edit `config.status'
128#     (which will cause the Makefiles to be regenerated when you run `make');
129# (2) otherwise, pass the desired values on the `make' command line.
130
131@SET_MAKE@
132
133all-recursive install-data-recursive install-exec-recursive \
134installdirs-recursive install-recursive uninstall-recursive  \
135check-recursive installcheck-recursive info-recursive dvi-recursive:
136        @set fnord $(MAKEFLAGS); amf=$$2; \
137        dot_seen=no; \
138        target=`echo $@ | sed s/-recursive//`; \
139        list='$(SUBDIRS)'; for subdir in $$list; do \
140          echo "Making $$target in $$subdir"; \
141          if test "$$subdir" = "."; then \
142            dot_seen=yes; \
143            local_target="$$target-am"; \
144          else \
145            local_target="$$target"; \
146          fi; \
147          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
148           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
149        done; \
150        if test "$$dot_seen" = "no"; then \
151          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
152        fi; test -z "$$fail"
153
154mostlyclean-recursive clean-recursive distclean-recursive \
155maintainer-clean-recursive:
156        @set fnord $(MAKEFLAGS); amf=$$2; \
157        dot_seen=no; \
158        rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
159          rev="$$subdir $$rev"; \
160          test "$$subdir" = "." && dot_seen=yes; \
161        done; \
162        test "$$dot_seen" = "no" && rev=". $$rev"; \
163        target=`echo $@ | sed s/-recursive//`; \
164        for subdir in $$rev; do \
165          echo "Making $$target in $$subdir"; \
166          if test "$$subdir" = "."; then \
167            local_target="$$target-am"; \
168          else \
169            local_target="$$target"; \
170          fi; \
171          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
172           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
173        done && test -z "$$fail"
174tags-recursive:
175        list='$(SUBDIRS)'; for subdir in $$list; do \
176          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
177        done
178
179tags: TAGS
180
181ID: $(HEADERS) $(SOURCES) $(LISP)
182        list='$(SOURCES) $(HEADERS)'; \
183        unique=`for i in $$list; do echo $$i; done | \
184          awk '    { files[$$0] = 1; } \
185               END { for (i in files) print i; }'`; \
186        here=`pwd` && cd $(srcdir) \
187          && mkid -f$$here/ID $$unique $(LISP)
188
189TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
190        tags=; \
191        here=`pwd`; \
192        list='$(SUBDIRS)'; for subdir in $$list; do \
193   if test "$$subdir" = .; then :; else \
194            test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
195   fi; \
196        done; \
197        list='$(SOURCES) $(HEADERS)'; \
198        unique=`for i in $$list; do echo $$i; done | \
199          awk '    { files[$$0] = 1; } \
200               END { for (i in files) print i; }'`; \
201        test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
202          || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
203
204mostlyclean-tags:
205
206clean-tags:
207
208distclean-tags:
209        -rm -f TAGS ID
210
211maintainer-clean-tags:
212
213distdir = $(PACKAGE)-$(VERSION)
214top_distdir = $(distdir)
215
216# This target untars the dist file and tries a VPATH configuration.  Then
217# it guarantees that the distribution is self-contained by making another
218# tarfile.
219distcheck: dist
220        -rm -rf $(distdir)
221        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
222        mkdir $(distdir)/=build
223        mkdir $(distdir)/=inst
224        dc_install_base=`cd $(distdir)/=inst && pwd`; \
225        cd $(distdir)/=build \
226          && ../configure --srcdir=.. --prefix=$$dc_install_base \
227          && $(MAKE) $(AM_MAKEFLAGS) \
228          && $(MAKE) $(AM_MAKEFLAGS) dvi \
229          && $(MAKE) $(AM_MAKEFLAGS) check \
230          && $(MAKE) $(AM_MAKEFLAGS) install \
231          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
232          && $(MAKE) $(AM_MAKEFLAGS) dist
233        -rm -rf $(distdir)
234        @banner="$(distdir).tar.gz is ready for distribution"; \
235        dashes=`echo "$$banner" | sed s/./=/g`; \
236        echo "$$dashes"; \
237        echo "$$banner"; \
238        echo "$$dashes"
239dist: distdir
240        -chmod -R a+r $(distdir)
241        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
242        -rm -rf $(distdir)
243dist-all: distdir
244        -chmod -R a+r $(distdir)
245        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
246        -rm -rf $(distdir)
247distdir: $(DISTFILES)
248        -rm -rf $(distdir)
249        mkdir $(distdir)
250        -chmod 777 $(distdir)
251        @for file in $(DISTFILES); do \
252          d=$(srcdir); \
253          if test -d $$d/$$file; then \
254            cp -pr $$/$$file $(distdir)/$$file; \
255          else \
256            test -f $(distdir)/$$file \
257            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
258            || cp -p $$d/$$file $(distdir)/$$file || :; \
259          fi; \
260        done
261        for subdir in $(SUBDIRS); do \
262          if test "$$subdir" = .; then :; else \
263            test -d $(distdir)/$$subdir \
264            || mkdir $(distdir)/$$subdir \
265            || exit 1; \
266            chmod 777 $(distdir)/$$subdir; \
267            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
268              || exit 1; \
269          fi; \
270        done
271info-am:
272info: info-recursive
273dvi-am:
274dvi: dvi-recursive
275check-am: all-am
276check: check-recursive
277installcheck-am:
278installcheck: installcheck-recursive
279install-exec-am:
280install-exec: install-exec-recursive
281
282install-data-am:
283install-data: install-data-recursive
284
285install-am: all-am
286        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
287install: install-recursive
288uninstall-am:
289uninstall: uninstall-recursive
290all-am: Makefile $(SCRIPTS) $(DATA)
291all-redirect: all-recursive
292install-strip:
293        $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
294installdirs: installdirs-recursive
295installdirs-am:
296
297
298mostlyclean-generic:
299
300clean-generic:
301
302distclean-generic:
303        -rm -f Makefile $(CONFIG_CLEAN_FILES)
304        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
305        -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
306
307maintainer-clean-generic:
308mostlyclean-am:  mostlyclean-tags mostlyclean-generic
309
310mostlyclean: mostlyclean-recursive
311
312clean-am:  clean-tags clean-generic mostlyclean-am
313
314clean: clean-recursive
315
316distclean-am:  distclean-tags distclean-generic clean-am
317
318distclean: distclean-recursive
319        -rm -f config.status
320
321maintainer-clean-am:  maintainer-clean-tags maintainer-clean-generic \
322                distclean-am
323        @echo "This command is intended for maintainers to use;"
324        @echo "it deletes files that may require special tools to rebuild."
325
326maintainer-clean: maintainer-clean-recursive
327        -rm -f config.status
328
329.PHONY: install-data-recursive uninstall-data-recursive \
330install-exec-recursive uninstall-exec-recursive installdirs-recursive \
331uninstalldirs-recursive all-recursive check-recursive \
332installcheck-recursive info-recursive dvi-recursive \
333mostlyclean-recursive distclean-recursive clean-recursive \
334maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
335distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
336dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
337install-exec install-data-am install-data install-am install \
338uninstall-am uninstall all-redirect all-am all installdirs-am \
339installdirs mostlyclean-generic distclean-generic clean-generic \
340maintainer-clean-generic clean mostlyclean distclean maintainer-clean
341
342setup.cache: setup.def
343        cp setup.def $@
344
345# Tell versions [3.59,3.63) of GNU make to not export all variables.
346# Otherwise a system limit (for SysV at least) may be exceeded.
347.NOEXPORT:
Note: See TracBrowser for help on using the repository browser.