source: rtems/c/src/optman/rtems/Makefile.am @ 8b91282

4.104.114.84.95
Last change on this file since 8b91282 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: 778 bytes
Line 
1##
2##  $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7C_FILES = no-dpmem.c no-event.c no-msg.c no-mp.c no-part.c no-region.c \
8    no-rtmon.c no-sem.c no-signal.c no-timer.c
9C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
10
11SRCS = $(C_FILES)
12OBJS = $(C_O_FILES)
13
14PGMS = $(C_FILES:%.c=$(ARCH)/%.rel)
15
16include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
17include $(top_srcdir)/../../../automake/lib.am
18
19TMPINSTALL_FILES += \
20$(C_FILES:%.c=$(PROJECT_RELEASE)/lib/%$(LIB_VARIANT).rel)
21
22$(PROJECT_RELEASE)/lib/%$(LIB_VARIANT).rel: $(ARCH)/%.rel
23        $(INSTALL_DATA) $< $@
24
25#
26# (OPTIONAL) Add local stuff here using +=
27#
28
29AM_CFLAGS += $(CFLAGS_OS_V)
30ASM4FLAGS += -I$(PROJECT_INCLUDE)/rtems
31
32all: ${ARCH} $(PGMS) $(TMPINSTALL_FILES)
33
34EXTRA_DIST = $(C_FILES)
35
36include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.