source: rtems/c/src/lib/libcpu/powerpc/mpc6xx/exceptions/Makefile.am @ 3b7aeda

4.104.114.84.95
Last change on this file since 3b7aeda was 3b7aeda, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/19/02 at 05:03:12

2002-12-19 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove RTEMS_CHEC_CUSTOM_BSP.
  • mpc505/ictrl/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc505/timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc505/vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc6xx/clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc6xx/exceptions/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc6xx/mmu/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc6xx/timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc6xx/wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8260/clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8260/console-generic/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8260/cpm/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8260/exceptions/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8260/mmu/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8260/timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8xx/clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8xx/console-generic/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8xx/cpm/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8xx/exceptions/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8xx/mmu/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • mpc8xx/timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • ppc403/clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • ppc403/console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • ppc403/ictrl/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • ppc403/timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • ppc403/tty_drv/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • ppc403/vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • shared/include/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • shared/src/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • Property mode set to 100644
File size: 909 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
13
14include_libcpu_HEADERS = raw_exception.h
15
16exceptions_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) \
17    $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
18
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    $(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
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.