source: rtems/c/src/lib/libcpu/powerpc/mpc8xx/exceptions/Makefile.am @ bf0747d

4.104.114.84.95
Last change on this file since bf0747d was bf0747d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/16/03 at 12:32:36

2003-08-16 Ralf Corsepius <corsepiu@…>

Makefile.am: Reflect having moved automake.
mpc505/Makefile.am: Reflect having moved automake.
mpc505/ictrl/Makefile.am: Reflect having moved automake.
mpc505/timer/Makefile.am: Reflect having moved automake.
mpc505/vectors/Makefile.am: Reflect having moved automake.
mpc6xx/Makefile.am: Reflect having moved automake.
mpc6xx/clock/Makefile.am: Reflect having moved automake.
mpc6xx/exceptions/Makefile.am: Reflect having moved automake.
mpc6xx/mmu/Makefile.am: Reflect having moved automake.
mpc6xx/timer/Makefile.am: Reflect having moved automake.
mpc6xx/wrapup/Makefile.am: Reflect having moved automake.
mpc8260/Makefile.am: Reflect having moved automake.
mpc8260/clock/Makefile.am: Reflect having moved automake.
mpc8260/console-generic/Makefile.am: Reflect having moved automake.
mpc8260/cpm/Makefile.am: Reflect having moved automake.
mpc8260/exceptions/Makefile.am: Reflect having moved automake.
mpc8260/mmu/Makefile.am: Reflect having moved automake.
mpc8260/timer/Makefile.am: Reflect having moved automake.
mpc8xx/Makefile.am: Reflect having moved automake.
mpc8xx/clock/Makefile.am: Reflect having moved automake.
mpc8xx/console-generic/Makefile.am: Reflect having moved automake.
mpc8xx/cpm/Makefile.am: Reflect having moved automake.
mpc8xx/exceptions/Makefile.am: Reflect having moved automake.
mpc8xx/mmu/Makefile.am: Reflect having moved automake.
mpc8xx/timer/Makefile.am: Reflect having moved automake.
ppc403/Makefile.am: Reflect having moved automake.
ppc403/clock/Makefile.am: Reflect having moved automake.
ppc403/console/Makefile.am: Reflect having moved automake.
ppc403/ictrl/Makefile.am: Reflect having moved automake.
ppc403/timer/Makefile.am: Reflect having moved automake.
ppc403/tty_drv/Makefile.am: Reflect having moved automake.
ppc403/vectors/Makefile.am: Reflect having moved automake.
shared/Makefile.am: Reflect having moved automake.
shared/include/Makefile.am: Reflect having moved automake.
shared/src/Makefile.am: Reflect having moved automake.
wrapup/Makefile.am: Reflect having moved automake.

  • Property mode set to 100644
File size: 890 bytes
Line 
1##
2## $Id$
3##
4
5
6PGM = $(ARCH)/exceptions.rel
7
8C_FILES = raw_exception.c
9
10S_FILES = asm_utils.S
11
12include_libcpudir = $(includedir)/libcpu
13include_libcpu_HEADERS = raw_exception.h
14
15exceptions_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) \
16    $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
17
18include $(top_srcdir)/../../../automake/compile.am
19include $(top_srcdir)/../../../automake/lib.am
20
21$(PROJECT_INCLUDE)/libcpu:
22        $(mkinstalldirs) $@
23$(PROJECT_INCLUDE)/libcpu/%.h: %.h
24        $(INSTALL_DATA) $< $@
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(PGM): $(exceptions_rel_OBJECTS)
31        $(make-rel)
32
33PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
34    $(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
35
36all-local: $(ARCH) $(PREINSTALL_FILES) $(exceptions_rel_OBJECTS) $(PGM)
37
38.PRECIOUS: $(PGM)
39
40EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h
41
42include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.