source: rtems/c/src/lib/libcpu/powerpc/old_exception_processing/Makefile.am @ dc2014f

4.104.114.84.95
Last change on this file since dc2014f was 98f3cfa, checked in by Joel Sherrill <joel.sherrill@…>, on 03/05/01 at 22:48:47

2001-02-27 Ralf Corsepius <corsepiu@…>

  • mpc505/ictrl/Makefile.am, mpc6xx/clock/Makefile.am, mpc6xx/exceptions/Makefile.am, mpc6xx/mmu/Makefile.am, mpc8xx/include/Makefile.am, new_exception_processing/Makefile.am, old_exception_processing/Makefile.am, pc403/ictrl/Makefile.am, shared/include/Makefile.am, shared/src/Makefile.am: Apply *_HEADERS instead of *H_FILES.
  • shared/src/.cvsignore: Add cache.h.
  • 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
9C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
10
11include_rtems_scoredir = $(includedir)/rtems/score
12include_rtems_score_HEADERS = cpu.h c_isr.inl ppc_offs.h
13
14# Assembly source names
15S_FILES = cpu_asm.S
16S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../../../automake/compile.am
20include $(top_srcdir)/../../../../../automake/lib.am
21
22PREINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems/score \
23    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/rtems/score/%)
24
25TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o
26
27$(PROJECT_RELEASE)/lib/rtems$(LIB_VARIANT).o: $(ARCH)/rtems.o
28        $(INSTALL_DATA) $< $@
29
30$(PROJECT_INCLUDE):
31        $(mkinstalldirs) $@
32
33$(PROJECT_INCLUDE)/rtems/score:
34        $(mkinstalldirs) $@
35
36$(PROJECT_INCLUDE)/rtems/score/%: %
37        $(INSTALL_DATA) $< $@
38
39$(PROJECT_INCLUDE)/%: %
40        $(INSTALL_DATA) $< $@
41
42REL = $(ARCH)/rtems-cpu.rel
43
44$(REL): $(C_O_FILES) $(S_O_FILES)
45        test -d ../$(ARCH) || mkdir ../$(ARCH)
46        $(make-rel)
47
48all-local: $(ARCH) $(PREINSTALL_FILES) $(REL) $(ARCH)/rtems.o \
49    $(TMPINSTALL_FILES)
50
51CLEANDIRS = ../o-optimize ../o-debug ../o-profile
52
53UNUSED_FILES = irq_stub.S
54
55EXTRA_DIST = TODO rtems.S $(C_FILES) $(S_FILES) $(UNUSED_FILES) ppc_offs.h
56
57include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.