source: rtems/c/Makefile.am @ e83378d

4.104.114.84.95
Last change on this file since e83378d was dc94a8dc, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/00 at 13:25:40

2000-10-26 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Make sure $SHELL inside of Makefiles does not get propagated to the BSP-subdirectories if a user specified CONFIG_SHELL.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
7
8## NOTE: This Makefile.am is rather fragile to the value of RTEMS_BSP
9## Esp. make clean and make distclean have unwanted side-effects
10## if RTEMS_BSP is not properly set up.
11
12RTEMS_BSP = $(RTEMS_BSP_LIST)
13## The '.' in SUBDIRS ensures that local make-targets (xxx-am) will be
14## triggered before $(RTEMS_BSP_LIST) subdirectories are made.
15SUBDIRS = make . $(RTEMS_BSP)
16
17## Use @RTEMS_BSP_LIST@ here, using $(RTEMS_BSP_LIST) would trigger
18## this rule for invalid BSPs
19@RTEMS_BSP_LIST@: src/configure
20        @set fnord $(MAKEFLAGS); amf=$$2; \
21        test -n "${RTEMS_BSP}" && for i in ${RTEMS_BSP}; do \
22          echo "Configuring RTEMS_BSP=$$i"; \
23          test -d $$i || mkdir $$i; \
24          ( cd $$i && \
25            CONFIG_SHELL=$(SHELL) RTEMS_BSP=$$i $(rtems_bsp_configure) \
26            && $(MAKE) $(AM_MAKEFLAGS) preinstall ) \
27          || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
28        done
29
30## Let all RTEMS' make targets depend on ${RTEMS_BSP}
31all-local: ${RTEMS_BSP}
32preinstall-am: ${RTEMS_BSP}
33depend-am: ${RTEMS_BSP}
34
35## Pull in extra files intro the distribution
36EXTRA_DIST = ACKNOWLEDGEMENTS README.DOS REQUIRES PROBLEMS TESTED README \
37    UPDATE_HELP
38
39DIST_SUBDIRS = ${RTEMS_BSP}
40## -------------------------------------------------------
41include $(top_srcdir)/../automake/subdirs.am
42include $(top_srcdir)/../automake/host.am
Note: See TracBrowser for help on using the repository browser.