source: rtems/c/src/exec/score/cpu/sh/rtems/score/Makefile.am @ 4090ebe

4.104.114.84.95
Last change on this file since 4090ebe 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: 613 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7H_FILES = cpu.h shtypes.h sh.h sh_io.h isp$(RTEMS_CPU_MODEL).h \
8    io$(RTEMS_CPU_MODEL).h
9noinst_HEADERS = \
10    cpu.h shtypes.h sh.h sh_io.h \
11    iosh7032.h ispsh7032.h \
12    iosh7045.h ispsh7045.h
13
14#
15# (OPTIONAL) Add local stuff here using +=
16#
17
18PREINSTALL_FILES = \
19$(PROJECT_INCLUDE)/rtems/score \
20$(H_FILES:%.h=$(PROJECT_INCLUDE)/rtems/score/%.h)
21
22$(PROJECT_INCLUDE)/rtems/score:
23        $(mkinstalldirs) $@
24
25$(PROJECT_INCLUDE)/rtems/score/%.h: %.h
26        $(INSTALL_DATA) $< $@
27
28all-local: $(PREINSTALL_FILES)
29
30include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.