source: rtems/c/src/exec/score/cpu/powerpc/old_exception_processing/Makefile.am @ effc2c4

Last change on this file since effc2c4 was effc2c4, checked in by Joel Sherrill <joel.sherrill@…>, on 04/03/00 at 14:44:39

Patch rtems-rc-4.5.0-6-cvs.diff from Ralf Corsepius <corsepiu@…>.
The patch contains:

  • build variants support
  • Reworked make-exe custom/*.cfg for all targets (Should be self-explanatory, may still be incomplete)
  • Several fixes to custom/*.cfgs related to setting debug flags
  • Fixes to some bsp_specs for BSPs which apparently have never been build with debugging before ;)
  • pc386.cfg fix attempts (cf. my mail from earlier today)
  • Updated ampolish (No need to run it, the patch contains the result from having applied it)

Known bugs/deficiencies related to this work:

  • "make [clean|distclean]" support is still incomplete (e.g. "make clean" does not delete all Depends-o-*)
  • Completely untested for linux/posix and hppa.
  • Build failures of i960 BSPs (make VARIANT=DEBUG) - I guess, they are not related to this patch.
  • Successfully tested for all sh, sparc, i386, ppc, m68k BSPs (make VARIANT=DEBUG)
  • make VARIANT=PROFILE not supported by all BSPs (I don't care :)
  • make VARIANT=DEBUG failures below tests/ for some BSPs (e.g. gensh1), because of the tests's binaries being too large to fit into the target memory layout.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7# C source names
8C_FILES = cpu.c ppccache.c
9C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
10
11ROOT_H_FILES =
12RTEMS_SCORE_H_FILES = cpu.h c_isr.inl
13noinst_HEADERS = $(ROOT_H_FILES) $(RTEMS_SCORE_H_FILES)
14
15# Assembly source names
16S_FILES = cpu_asm.S
17S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
18
19include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../../../../automake/lib.am
21
22PREINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems/score \
23    $(ROOT_H_FILES:%=$(PROJECT_INCLUDE)/%) \
24    $(RTEMS_SCORE_H_FILES:%=$(PROJECT_INCLUDE)/rtems/score/%)
25
26TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o
27
28$(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
29        $(INSTALL_DATA) $< $@
30
31$(PROJECT_INCLUDE):
32        $(mkinstalldirs) $@
33
34$(PROJECT_INCLUDE)/rtems/score:
35        $(mkinstalldirs) $@
36
37$(PROJECT_INCLUDE)/rtems/score/%: %
38        $(INSTALL_DATA) $< $@
39
40$(PROJECT_INCLUDE)/%: %
41        $(INSTALL_DATA) $< $@
42
43REL = ../$(ARCH)/rtems-cpu.rel
44
45$(REL): $(C_O_FILES) $(S_O_FILES)
46        test -d ../$(ARCH) || mkdir ../$(ARCH)
47        $(make-rel)
48
49all-local: $(ARCH) $(PREINSTALL_FILES) $(REL) $(ARCH)/rtems.o $(TMPINSTALL_FILES)
50
51clean-local:
52        $(RM) -r ../o-optimize ../o-debug ../o-profile
53
54UNUSED_FILES = irq_stub.S
55
56EXTRA_DIST = TODO rtems.S $(C_FILES) $(S_FILES) $(UNUSED_FILES)
57
58include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.