source: rtems/c/src/lib/libcpu/powerpc/new_exception_processing/Makefile.am @ 3e30f27

4.104.114.84.95
Last change on this file since 3e30f27 was 3e30f27, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/00 at 16:00:37

2000-09-04 Ralf Corsepius <corsepiu@…>

  • mpc505/timer/Makefile.am, mpc505/vectors/Makefile.am, mpc6xx/clock/Makefile.am, mpc6xx/exceptions/Makefile.am, mpc6xx/mmu/Makefile.am, mpc6xx/timer/Makefile.am, mpc6xx/wrapup/Makefile.am, ppc403/clock/Makefile.am, ppc403/console/Makefile.am, ppc403/ictrl/Makefile.am, ppc403/timer/Makefile.am, ppc403/vectors/Makefile.am, shared/include/Makefile.am, shared/src/Makefile.am, wrapup/Makefile.am, mpc8xx/clock/Makefile.am, mpc8xx/console-generic/Makefile.am, mpc8xx/cpm/Makefile.am, mpc8xx/mmu/Makefile.am, mpc8xx/timer/Makefile.am, mpc8xx/vectors/Makefile.am, new_exception_processing/Makefile.am, old_exception_processing/Makefile.am: Include compile.am
  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[43283456]1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7C_FILES = cpu.c
8C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
9
10ROOT_H_FILES =
11RTEMS_SCORE_H_FILES = cpu.h c_isr.inl
[df49c60]12noinst_HEADERS = $(ROOT_H_FILES) $(RTEMS_SCORE_H_FILES)
[43283456]13
14S_FILES = cpu_asm.S
15S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[3e30f27]18include $(top_srcdir)/../../../../../automake/compile.am
[586f260]19include $(top_srcdir)/../../../../../automake/lib.am
[43283456]20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
[df49c60]25PREINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems/score \
26    $(ROOT_H_FILES:%=$(PROJECT_INCLUDE)/%) \
27    $(RTEMS_SCORE_H_FILES:%=$(PROJECT_INCLUDE)/rtems/score/%)
[43283456]28
29$(PROJECT_INCLUDE):
30        $(mkinstalldirs) $@
31
32$(PROJECT_INCLUDE)/rtems/score:
33        $(mkinstalldirs) $@
34
35$(PROJECT_INCLUDE)/rtems/score/%: %
36        $(INSTALL_DATA) $< $@
37
38$(PROJECT_INCLUDE)/%: %
39        $(INSTALL_DATA) $< $@
40
[74d5216]41REL = $(ARCH)/rtems-cpu.rel
[43283456]42
43$(REL): $(C_O_FILES) $(S_O_FILES)
44        test -d ../$(ARCH) || mkdir ../$(ARCH)
45        $(make-rel)
46
47all-local: $(ARCH) $(PREINSTALL_FILES) $(REL)
48## all-local: $(ARCH)/rtems.o
49all-local: $(TMPINSTALL_FILES)
50
[df49c60]51CLEANDIRS = ../o-optimize ../o-debug ../o-profile
[43283456]52
[df49c60]53EXTRA_DIST = $(C_FILES) $(S_FILES)
[43283456]54
[586f260]55include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.