source: rtems/c/src/lib/libbsp/powerpc/support/new_exception_processing/Makefile.am @ 75ad7376

4.104.114.84.95
Last change on this file since 75ad7376 was 75ad7376, checked in by Joel Sherrill <joel.sherrill@…>, on 11/28/01 at 18:15:51

2001-11-28 Joel Sherrill <joel@…>,

This was tracked as PR91.

  • rtems/score/cpu.h: Added CPU_PROVIDES_ISR_IS_IN_PROGRESS macro which is used to specify if the port uses the standard macro for this (FALSE). A TRUE setting indicates the port provides its own implementation.
  • rtems/score/c_isr.inl: Deleted and contents merged into cpu.c.
  • cpu.c: Received contents of c_isr.inl.
  • Makefile.am: Deleted reference to c_isr.inl.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.5
6
7ACLOCAL_AMFLAGS = -I ../../../../../../../aclocal
8
9C_FILES = cpu.c
10C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
11
12include_rtems_scoredir = $(includedir)/rtems/score
13
14include_rtems_score_HEADERS = rtems/score/cpu.h
15
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/compile.am
21include $(top_srcdir)/../../../../../../../automake/lib.am
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
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
33$(PROJECT_INCLUDE):
34        $(mkinstalldirs) $@
35
36$(PROJECT_INCLUDE)/rtems/score:
37        $(mkinstalldirs) $@
38
39$(PROJECT_INCLUDE)/%: %
40        $(INSTALL_DATA) $< $@
41
42REL = $(ARCH)/rtems-cpu.rel
43
44$(REL): $(C_O_FILES) $(S_O_FILES)
45        $(make-rel)
46
47all-local: $(ARCH) $(TMPINSTALL_FILES) $(REL)
48
49EXTRA_DIST = $(C_FILES) $(S_FILES)
50
51include $(top_srcdir)/../../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.