source: rtems/c/src/lib/libcpu/powerpc/new_exception_processing/Makefile.am @ 98f3cfa

4.104.114.84.95
Last change on this file since 98f3cfa 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.2 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7C_FILES = cpu.c
8C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
9
10include_rtems_scoredir = $(includedir)/rtems/score
11
12include_rtems_score_HEADERS = cpu.h c_isr.inl
13
14S_FILES = cpu_asm.S
15S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../../../automake/compile.am
19include $(top_srcdir)/../../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25PREINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems/score \
26    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/rtems/score/%)
27
28$(PROJECT_INCLUDE):
29        $(mkinstalldirs) $@
30
31$(PROJECT_INCLUDE)/rtems/score:
32        $(mkinstalldirs) $@
33
34$(PROJECT_INCLUDE)/rtems/score/%: %
35        $(INSTALL_DATA) $< $@
36
37$(PROJECT_INCLUDE)/%: %
38        $(INSTALL_DATA) $< $@
39
40REL = $(ARCH)/rtems-cpu.rel
41
42$(REL): $(C_O_FILES) $(S_O_FILES)
43        test -d ../$(ARCH) || mkdir ../$(ARCH)
44        $(make-rel)
45
46all-local: $(ARCH) $(PREINSTALL_FILES) $(REL)
47## all-local: $(ARCH)/rtems.o
48all-local: $(TMPINSTALL_FILES)
49
50CLEANDIRS = ../o-optimize ../o-debug ../o-profile
51
52EXTRA_DIST = $(C_FILES) $(S_FILES)
53
54include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.