source: rtems/c/src/lib/libbsp/powerpc/support/new_exception_processing/Makefile.am @ 5f4ee2a

4.104.114.84.95
Last change on this file since 5f4ee2a was 5f4ee2a, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/01 at 19:45:55

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

  • new_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
  • old_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/mmu/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/clock/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc6xx/exceptions/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc8xx/include/Makefile.am: Use 'PREINSTALL_FILES ='.
  • mpc8xx/exceptions/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/include/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/src/Makefile.am: Use 'PREINSTALL_FILES ='.
  • shared/src/Makefile.am: Use 'CLEANFILES ='.
  • 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.