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

4.104.114.84.95
Last change on this file since 37731c2b was 37731c2b, checked in by Joel Sherrill <joel.sherrill@…>, on 04/06/01 at 15:54:20

2001-03-30 Eric Valette <valette@…>

  • mpc8xx/exceptions/.cvsignore, mpc8xx/exceptions/Makefile.am, mpc8xx/exceptions/asm_utils.S, mpc8xx/exceptions/raw_exception.c, mpc8xx/exceptions/raw_exception.h: New files.
  • configure.in, mpc6xx/mmu/bat.h, mpc8xx/Makefile.am, mpc8xx/clock/clock.c, mpc8xx/console-generic/console-generic.c, mpc8xx/include/mpc8xx.h, mpc8xx/mmu/mmu.c, new_exception_processing/cpu.h, shared/include/byteorder.h, wrapup/Makefile.am: This is conversion of the mpc8xx CPU to the "new exception processing model."
  • Property mode set to 100644
File size: 904 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7PGM = $(ARCH)/exceptions.rel
8
9C_FILES = raw_exception.c
10
11S_FILES = asm_utils.S
12
13H_FILES = raw_exception.h
14
15exceptions_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) \
16    $(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
22$(PROJECT_INCLUDE)/libcpu:
23        $(mkinstalldirs) $@
24$(PROJECT_INCLUDE)/libcpu/%.h: %.h
25        $(INSTALL_DATA) $< $@
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31$(PGM): $(exceptions_rel_OBJECTS)
32        $(make-rel)
33
34PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu \
35    $(PROJECT_INCLUDE)/libcpu/raw_exception.h
36
37all-local: $(ARCH) $(PREINSTALL_FILES) $(exceptions_rel_OBJECTS) $(PGM)
38
39.PRECIOUS: $(PGM)
40
41EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h
42
43include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.