source: rtems/c/src/exec/score/tools/generic/Makefile.in @ c011b47

4.104.114.84.95
Last change on this file since c011b47 was 1059abcd, checked in by Joel Sherrill <joel.sherrill@…>, on 04/19/99 at 15:37:36

Regenerated.

  • Property mode set to 100644
File size: 7.0 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#
14# $Id$
15#
16
17
18
19SHELL = @SHELL@
20
21srcdir = @srcdir@
22top_srcdir = @top_srcdir@
23VPATH = @srcdir@
24prefix = @prefix@
25exec_prefix = @exec_prefix@
26
27bindir = @bindir@
28sbindir = @sbindir@
29libexecdir = @libexecdir@
30datadir = @datadir@
31sysconfdir = @sysconfdir@
32sharedstatedir = @sharedstatedir@
33localstatedir = @localstatedir@
34libdir = @libdir@
35infodir = @infodir@
36mandir = @mandir@
37includedir = @includedir@
38oldincludedir = /usr/include
39
40DESTDIR =
41
42pkgdatadir = $(datadir)/@PACKAGE@
43pkglibdir = $(libdir)/@PACKAGE@
44pkgincludedir = $(includedir)/@PACKAGE@
45
46top_builddir = .
47AUTOCONF = @AUTOCONF@
48AUTOMAKE = @AUTOMAKE@
49AUTOHEADER = @AUTOHEADER@
50
51INSTALL = @INSTALL@
52INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
53INSTALL_DATA = @INSTALL_DATA@
54INSTALL_SCRIPT = @INSTALL_SCRIPT@
55transform = @program_transform_name@
56
57NORMAL_INSTALL = :
58PRE_INSTALL = :
59POST_INSTALL = :
60NORMAL_UNINSTALL = :
61PRE_UNINSTALL = :
62POST_UNINSTALL = :
63build_alias = @build_alias@
64build_triplet = @build@
65host_alias = @host_alias@
66host_triplet = @host@
67target_alias = @target_alias@
68target_triplet = @target@
69KSH = @KSH@
70MAKEINFO = @MAKEINFO@
71PACKAGE = @PACKAGE@
72PROJECT_ROOT = @PROJECT_ROOT@
73RTEMS_ROOT = @RTEMS_ROOT@
74RTEMS_TOPdir = @RTEMS_TOPdir@
75VERSION = @VERSION@
76program_prefix = @program_prefix@
77project_bindir = @project_bindir@
78project_includedir = @project_includedir@
79project_libdir = @project_libdir@
80tooldir = @tooldir@
81
82AUTOMAKE_OPTIONS = foreign
83ACLOCAL = @ACLOCAL@ -I $(RTEMS_TOPdir)/aclocal
84
85noinst_SCRIPTS = size_rtems
86ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
87mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../../mkinstalldirs
88CONFIG_CLEAN_FILES =  size_rtems
89SCRIPTS =  $(noinst_SCRIPTS)
90
91DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in \
92size_rtems.in
93
94
95DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
96
97TAR = tar
98GZIP_ENV = --best
99all: all-redirect
100.SUFFIXES:
101$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../../automake/local.am
102        cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
103
104Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
105        cd $(top_builddir) \
106          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
107
108$(ACLOCAL_M4):  configure.in
109        cd $(srcdir) && $(ACLOCAL)
110
111config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
112        $(SHELL) ./config.status --recheck
113$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
114        cd $(srcdir) && $(AUTOCONF)
115size_rtems: $(top_builddir)/config.status size_rtems.in
116        cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
117tags: TAGS
118TAGS:
119
120
121distdir = $(PACKAGE)-$(VERSION)
122top_distdir = $(distdir)
123
124# This target untars the dist file and tries a VPATH configuration.  Then
125# it guarantees that the distribution is self-contained by making another
126# tarfile.
127distcheck: dist
128        -rm -rf $(distdir)
129        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
130        mkdir $(distdir)/=build
131        mkdir $(distdir)/=inst
132        dc_install_base=`cd $(distdir)/=inst && pwd`; \
133        cd $(distdir)/=build \
134          && ../configure --srcdir=.. --prefix=$$dc_install_base \
135          && $(MAKE) $(AM_MAKEFLAGS) \
136          && $(MAKE) $(AM_MAKEFLAGS) dvi \
137          && $(MAKE) $(AM_MAKEFLAGS) check \
138          && $(MAKE) $(AM_MAKEFLAGS) install \
139          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
140          && $(MAKE) $(AM_MAKEFLAGS) dist
141        -rm -rf $(distdir)
142        @banner="$(distdir).tar.gz is ready for distribution"; \
143        dashes=`echo "$$banner" | sed s/./=/g`; \
144        echo "$$dashes"; \
145        echo "$$banner"; \
146        echo "$$dashes"
147dist: distdir
148        -chmod -R a+r $(distdir)
149        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
150        -rm -rf $(distdir)
151dist-all: distdir
152        -chmod -R a+r $(distdir)
153        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
154        -rm -rf $(distdir)
155distdir: $(DISTFILES)
156        -rm -rf $(distdir)
157        mkdir $(distdir)
158        -chmod 777 $(distdir)
159        here=`cd $(top_builddir) && pwd`; \
160        top_distdir=`cd $(distdir) && pwd`; \
161        distdir=`cd $(distdir) && pwd`; \
162        cd $(top_srcdir) \
163          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
164        @for file in $(DISTFILES); do \
165          d=$(srcdir); \
166          if test -d $$d/$$file; then \
167            cp -pr $$/$$file $(distdir)/$$file; \
168          else \
169            test -f $(distdir)/$$file \
170            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
171            || cp -p $$d/$$file $(distdir)/$$file || :; \
172          fi; \
173        done
174info-am:
175info: info-am
176dvi-am:
177dvi: dvi-am
178check-am: all-am
179check: check-am
180installcheck-am:
181installcheck: installcheck-am
182install-exec-am:
183install-exec: install-exec-am
184
185install-data-am:
186install-data: install-data-am
187
188install-am: all-am
189        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
190install: install-am
191uninstall-am:
192uninstall: uninstall-am
193all-am: Makefile $(SCRIPTS)
194all-redirect: all-am
195install-strip:
196        $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
197installdirs:
198
199
200mostlyclean-generic:
201
202clean-generic:
203
204distclean-generic:
205        -rm -f Makefile $(CONFIG_CLEAN_FILES)
206        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
207
208maintainer-clean-generic:
209mostlyclean-am:  mostlyclean-generic
210
211mostlyclean: mostlyclean-am
212
213clean-am:  clean-generic mostlyclean-am
214
215clean: clean-am
216
217distclean-am:  distclean-generic clean-am
218
219distclean: distclean-am
220        -rm -f config.status
221
222maintainer-clean-am:  maintainer-clean-generic distclean-am
223        @echo "This command is intended for maintainers to use;"
224        @echo "it deletes files that may require special tools to rebuild."
225
226maintainer-clean: maintainer-clean-am
227        -rm -f config.status
228
229.PHONY: tags distdir info-am info dvi-am dvi check check-am \
230installcheck-am installcheck install-exec-am install-exec \
231install-data-am install-data install-am install uninstall-am uninstall \
232all-redirect all-am all installdirs mostlyclean-generic \
233distclean-generic clean-generic maintainer-clean-generic clean \
234mostlyclean distclean maintainer-clean
235
236
237debug-am:
238debug: debug-am
239.PHONY: debug debug-am
240
241debug_install-am:
242debug_install: debug_install-am
243.PHONY: debug_install debug_install-am
244
245profile-am:
246profile: profile-am
247.PHONY: profile profile-am
248
249profile_install-am:
250profile_install: profile_install-am
251.PHONY: profile_install profile_install-am
252
253preinstall-am:
254preinstall: preinstall-am
255.PHONY: preinstall preinstall-am
256
257clobber-am:
258clobber: clobber-am
259.PHONY: clobber clobber-am
260
261depend-am:
262depend: depend-am
263.PHONY: depend depend-am
264
265# Tell versions [3.59,3.63) of GNU make to not export all variables.
266# Otherwise a system limit (for SysV at least) may be exceeded.
267.NOEXPORT:
Note: See TracBrowser for help on using the repository browser.