source: rtems/c/src/lib/libbsp/powerpc/support/old_exception_processing/Makefile.am @ 466e590

4.104.114.84.95
Last change on this file since 466e590 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
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.5
6
7ACLOCAL_AMFLAGS = -I ../../../../../../../aclocal
8
9INCLUDES = -I$(srcdir)
10
11# C source names
12C_FILES = cpu.c
13C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
14
15include_rtems_scoredir = $(includedir)/rtems/score
16include_rtems_score_HEADERS = rtems/score/cpu.h \
17    rtems/score/c_isr.inl rtems/score/ppc_offs.h
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
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)/%)
29
30# FIXME: This should not be here.
31PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems/score/cpu.h
32
33TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o
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
47REL = $(ARCH)/rtems-cpu.rel
48
49$(REL): $(C_O_FILES) $(S_O_FILES)
50        $(make-rel)
51
52all-local: $(ARCH) $(TMPINSTALL_FILES) $(REL) $(ARCH)/rtems.o
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.