source: rtems/c/src/lib/libcpu/powerpc/mpc8xx/exceptions/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: 903 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.