source: rtems/c/src/lib/libcpu/powerpc/mpc6xx/exceptions/Makefile.am @ 4e36a2f

4.104.114.84.95
Last change on this file since 4e36a2f was 4e36a2f, checked in by Joel Sherrill <joel.sherrill@…>, on 01/31/00 at 15:27:02

Patches rtems-rc-20000118-3.diff and rtems-rc-20000118-4.diff from
Ralf Corsepius <corsepiu@…> that contain:

  • Modifications, (minor) corrections, cleanups to most existing Makefile.ams
  • Adds automake support to all remaining BSPs which have not yet been converted to automake.
  • Makefile.am for all remaining wrapup/Makefile.ams
  • Property mode set to 100644
File size: 877 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/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
30AM_CFLAGS = $(CFLAGS_OS_V)
31
32$(PGM): $(exceptions_rel_OBJECTS)
33        $(make-rel)
34
35PREINSTALL_FILES += $(PROJECT_INCLUDE)/libcpu \
36    $(PROJECT_INCLUDE)/libcpu/raw_exception.h
37
38all-local: $(ARCH) $(PREINSTALL_FILES) $(exceptions_rel_OBJECTS) $(PGM)
39
40.PRECIOUS: $(PGM)
41
42EXTRA_DIST = asm_utils.S raw_exception.c raw_exception.h
43
44include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.