source: rtems/c/src/lib/libbsp/powerpc/support/old_exception_processing/Makefile.am @ 39fb164

4.104.114.84.95
Last change on this file since 39fb164 was 39fb164, checked in by Joel Sherrill <joel.sherrill@…>, on 11/20/01 at 18:48:43

2001-11-20 Ralf Corsepius <corsepiu@…>

  • support/new_exception_processing/Makefile.am, support/old_exception_processing/Makefile.am, support/old_exception_processing/cpu_asm.S, support/old_exception_processing/irq_stub.S: Modified to reflect old versus new exception processing being a per BSP option.
  • support/new_exception_processing/c_isr.inl, support/new_exception_processing/cpu.h, support/old_exception_processing/c_isr.inl, support/old_exception_processing/cpu.h, support/old_exception_processing/ppc_offs.h: Removed.
  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[43283456]1##
2## $Id$
3##
4
[39fb164]5AUTOMAKE_OPTIONS = foreign 1.5
6
7ACLOCAL_AMFLAGS = -I ../../../../../../../aclocal
8
9INCLUDES = -I$(srcdir)
[43283456]10
11# C source names
[8ef3818]12C_FILES = cpu.c
[43283456]13C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
14
[98f3cfa]15include_rtems_scoredir = $(includedir)/rtems/score
[39fb164]16include_rtems_score_HEADERS = rtems/score/cpu.h \
17    rtems/score/c_isr.inl rtems/score/ppc_offs.h
[43283456]18
19# Assembly source names
20S_FILES = cpu_asm.S
21S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
22
23include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[39fb164]24include $(top_srcdir)/../../../../../../../automake/compile.am
25include $(top_srcdir)/../../../../../../../automake/lib.am
26
27TMPINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems/score \
28    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/%)
[43283456]29
[39fb164]30# FIXME: This should not be here.
31PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score/cpu.h
[43283456]32
[df49c60]33TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o
[43283456]34
35$(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
36        $(INSTALL_DATA) $< $@
37
38$(PROJECT_INCLUDE):
39        $(mkinstalldirs) $@
40
41$(PROJECT_INCLUDE)/rtems/score:
42        $(mkinstalldirs) $@
43
44$(PROJECT_INCLUDE)/%: %
45        $(INSTALL_DATA) $< $@
46
[586f260]47REL = $(ARCH)/rtems-cpu.rel
[43283456]48
49$(REL): $(C_O_FILES) $(S_O_FILES)
50        $(make-rel)
51
[39fb164]52all-local: $(ARCH) $(TMPINSTALL_FILES) $(REL) $(ARCH)/rtems.o
[43283456]53
54UNUSED_FILES = irq_stub.S
55
[39fb164]56EXTRA_DIST = TODO rtems.S $(C_FILES) $(S_FILES) $(UNUSED_FILES)
[43283456]57
[39fb164]58include $(top_srcdir)/../../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.