source: rtems/c/src/make/Makefile.am @ c1c1f33

4.104.114.84.95
Last change on this file since c1c1f33 was 4090ebe, checked in by Joel Sherrill <joel.sherrill@…>, on 12/03/99 at 13:25:00

Patch rtems-rc-19991123-rc-3.diff from Ralf Corsepius
<corsepiu@…>:

The patch below provides

  • automake support for score/cpu/powerpc
  • The hack to propagate values from *.cfg to automake configuration
  • A fix for librdbg/powerpc/mcp750/Makefile.am (Was completely corrupted before)
  • Fixes some files which apparently where missing in rtems-rc-19991123-rc-2.diff
  • some minor configuration related patches

To apply:

rm -rf ./c/src/exec/score/cpu/powerpc/wrap
patch -p1 < rtems-rc-19991123-rc-3.diff

Attention:

c/src/exec/score/cpu/[configure.in|aclocal.m4|configure] should be
removed after applying the patch.

Modifications had been made to the score/cpu/powerpc directory after
the snapshot this was based on. In particular, the mpc750 and
other_cpu directories had been renamed to new_exception_processing
and old_exception_processing. After this patch was applied, modifications
were made to account for this.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
7
8rtems_makedir=$(prefix)/make
9
10GENERIC_FILES = \
11host.cfg
12
13MAKE_FILES = README \
14directory.cfg leaf.cfg \
15lib.cfg
16
17rtems_make_DATA = \
18$(MAKE_FILES) \
19$(GENERIC_FILES)
20
21noinst_DATA = \
22main.cfg
23
24rtemsdir = $(prefix)
25rtems_bspdir = $(rtemsdir)/@RTEMS_BSP@
26rtems_bsp_DATA = \
27Makefile.inc
28
29rtems_bsp_makedir = $(rtems_bspdir)/make
30rtems_bsp_make_DATA = \
31bsp.cfg
32
33if MAINTAINER_MODE
34$(srcdir)/main.cfg.in: $(top_srcdir)/@RTEMS_TOPdir@/make/main.cfg
35        sed -e 's%\$$(RTEMS_BSP)%\@RTEMS_BSP\@%g' < $< >$@
36
37$(srcdir)/host.cfg.in: $(top_srcdir)/@RTEMS_TOPdir@/make/host.cfg.in
38        cp $< $@
39
40endif
41
42SUBDIRS = compilers custom
43
44include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
45
46@RTEMS_BSP@.cache: Makefile
47        $(RM) $@
48        @echo rtems_cv_RTEMS_CPU_MODEL=\$${rtems_cv_RTEMS_CPU_MODEL=$(RTEMS_CPU_MODEL)} >> $@
49        @echo rtems_cv_RTEMS_BSP_FAMILY=\$${rtems_cv_RTEMS_BSP_FAMILY=$(RTEMS_BSP_FAMILY)} >> $@
50
51include $(top_srcdir)/../../../automake/subdirs.am
52include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.