source: rtems/c/src/tests/tools/generic/Makefile.in @ 7807b30e

4.104.114.84.95
Last change on this file since 7807b30e was 8cdb582, checked in by Joel Sherrill <joel.sherrill@…>, on 04/12/99 at 15:41:33

Patch from Ralf Corsepius <corsepiu@…>:

This patch addresses a few minor issues and contains a few (minor)
preparations for automake.

  • configure.in: Fix for handing c/src/tests subdirectory handling (FIX)
  • aclocal/rtems-top.m4: + Add TARGET_SUBDIR and --with-target-subdir (preparation of future

enhancements for cross-compiling)

+ Activate RTEMS_ROOT handling (automake preparation)

  • automake/*.am: replace comments "#" with "##" so that comments won't get included into Makefile.in's anymore
  • c/update-tools/* automake support (NEW)
  • ./autogen update/enhancement (cf. ./autogen for details)

After applying this patch please run:

./autogen
cvs add c/update-tools/configure.in
cvs add c/update-tools/Makefile.am
cvs add c/update-tools/aclocal.m4

  • 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@
76
77AUTOMAKE_OPTIONS = foreign
78ACLOCAL = @ACLOCAL@ -I $(RTEMS_TOPdir)/aclocal
79
80noinst_SCRIPTS = difftest sorttimes
81ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
82mkinstalldirs = $(SHELL) $(top_srcdir)/../../../../../mkinstalldirs
83CONFIG_CLEAN_FILES =  difftest sorttimes
84SCRIPTS =  $(noinst_SCRIPTS)
85
86DIST_COMMON =  Makefile.am Makefile.in aclocal.m4 configure configure.in \
87difftest.in sorttimes.in
88
89
90DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
91
92TAR = tar
93GZIP_ENV = --best
94all: all-redirect
95.SUFFIXES:
96$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/../../../../../automake/local.am
97        cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile
98
99Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status $(BUILT_SOURCES)
100        cd $(top_builddir) \
101          && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
102
103$(ACLOCAL_M4):  configure.in
104        cd $(srcdir) && $(ACLOCAL)
105
106config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
107        $(SHELL) ./config.status --recheck
108$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
109        cd $(srcdir) && $(AUTOCONF)
110difftest: $(top_builddir)/config.status difftest.in
111        cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
112sorttimes: $(top_builddir)/config.status sorttimes.in
113        cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
114tags: TAGS
115TAGS:
116
117
118distdir = $(PACKAGE)-$(VERSION)
119top_distdir = $(distdir)
120
121# This target untars the dist file and tries a VPATH configuration.  Then
122# it guarantees that the distribution is self-contained by making another
123# tarfile.
124distcheck: dist
125        -rm -rf $(distdir)
126        GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
127        mkdir $(distdir)/=build
128        mkdir $(distdir)/=inst
129        dc_install_base=`cd $(distdir)/=inst && pwd`; \
130        cd $(distdir)/=build \
131          && ../configure --srcdir=.. --prefix=$$dc_install_base \
132          && $(MAKE) $(AM_MAKEFLAGS) \
133          && $(MAKE) $(AM_MAKEFLAGS) dvi \
134          && $(MAKE) $(AM_MAKEFLAGS) check \
135          && $(MAKE) $(AM_MAKEFLAGS) install \
136          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
137          && $(MAKE) $(AM_MAKEFLAGS) dist
138        -rm -rf $(distdir)
139        @banner="$(distdir).tar.gz is ready for distribution"; \
140        dashes=`echo "$$banner" | sed s/./=/g`; \
141        echo "$$dashes"; \
142        echo "$$banner"; \
143        echo "$$dashes"
144dist: distdir
145        -chmod -R a+r $(distdir)
146        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
147        -rm -rf $(distdir)
148dist-all: distdir
149        -chmod -R a+r $(distdir)
150        GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
151        -rm -rf $(distdir)
152distdir: $(DISTFILES)
153        -rm -rf $(distdir)
154        mkdir $(distdir)
155        -chmod 777 $(distdir)
156        here=`cd $(top_builddir) && pwd`; \
157        top_distdir=`cd $(distdir) && pwd`; \
158        distdir=`cd $(distdir) && pwd`; \
159        cd $(top_srcdir) \
160          && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign Makefile
161        @for file in $(DISTFILES); do \
162          d=$(srcdir); \
163          if test -d $$d/$$file; then \
164            cp -pr $$/$$file $(distdir)/$$file; \
165          else \
166            test -f $(distdir)/$$file \
167            || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
168            || cp -p $$d/$$file $(distdir)/$$file || :; \
169          fi; \
170        done
171info-am:
172info: info-am
173dvi-am:
174dvi: dvi-am
175check-am: all-am
176check: check-am
177installcheck-am:
178installcheck: installcheck-am
179install-exec-am:
180install-exec: install-exec-am
181
182install-data-am:
183install-data: install-data-am
184
185install-am: all-am
186        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
187install: install-am
188uninstall-am:
189uninstall: uninstall-am
190all-am: Makefile $(SCRIPTS) all-local
191all-redirect: all-am
192install-strip:
193        $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
194installdirs:
195
196
197mostlyclean-generic:
198
199clean-generic:
200
201distclean-generic:
202        -rm -f Makefile $(CONFIG_CLEAN_FILES)
203        -rm -f config.cache config.log stamp-h stamp-h[0-9]*
204
205maintainer-clean-generic:
206mostlyclean-am:  mostlyclean-generic
207
208mostlyclean: mostlyclean-am
209
210clean-am:  clean-generic mostlyclean-am
211
212clean: clean-am
213
214distclean-am:  distclean-generic clean-am
215
216distclean: distclean-am
217        -rm -f config.status
218
219maintainer-clean-am:  maintainer-clean-generic distclean-am
220        @echo "This command is intended for maintainers to use;"
221        @echo "it deletes files that may require special tools to rebuild."
222
223maintainer-clean: maintainer-clean-am
224        -rm -f config.status
225
226.PHONY: tags distdir info-am info dvi-am dvi check check-am \
227installcheck-am installcheck install-exec-am install-exec \
228install-data-am install-data install-am install uninstall-am uninstall \
229all-local all-redirect all-am all installdirs mostlyclean-generic \
230distclean-generic clean-generic maintainer-clean-generic clean \
231mostlyclean distclean maintainer-clean
232
233
234# HACK: install to build-tree
235all-local: $(SCRIPTS)
236        $(mkinstalldirs) $(PROJECT_ROOT)/${RTEMS_BSP}/tests
237        $(INSTALL_SCRIPT) difftest $(PROJECT_ROOT)/${RTEMS_BSP}/tests
238        $(INSTALL_SCRIPT) sorttimes $(PROJECT_ROOT)/${RTEMS_BSP}/tests
239
240debug-am:
241
242debug: debug-am
243
244debug_install-am:
245
246debug_install: debug_install-am
247
248.PHONY: debug debug_install debug-am
249
250profile-am:
251
252profile: profile-am
253
254profile_install-am:
255
256profile_install: profile_install-am
257
258.PHONY: profile profile_install profile-am
259
260preinstall-am:
261
262preinstall: preinstall-am
263
264.PHONY: preinstall preinstall-am
265
266# Tell versions [3.59,3.63) of GNU make to not export all variables.
267# Otherwise a system limit (for SysV at least) may be exceeded.
268.NOEXPORT:
Note: See TracBrowser for help on using the repository browser.