source: rtems/c/src/lib/libcpu/powerpc/mpc8260/exceptions/Makefile.am @ a942a7e

4.104.114.84.95
Last change on this file since a942a7e was a942a7e, checked in by Joel Sherrill <joel.sherrill@…>, on 10/24/01 at 23:55:27

2001-10-24 Ralf Corsepius <corsepiu@…>

  • mpc8260/exceptions/Makefile.am, mpc8260/include/Makefile.am, mpc8xx/exceptions/Makefile.am: Updated to autoconf 2.52.
  • Property mode set to 100644
File size: 973 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
13include_libcpudir = $(includedir)/libcpu
14include_libcpu_HEADERS = raw_exception.h
15
16exceptions_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.o) \
17    $(S_FILES:%.S=$(ARCH)/%.o)
18
19include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
20include $(top_srcdir)/../../../../../automake/compile.am
21include $(top_srcdir)/../../../../../automake/lib.am
22
23$(PROJECT_INCLUDE)/libcpu:
24        $(mkinstalldirs) $@
25$(PROJECT_INCLUDE)/libcpu/%.h: %.h
26        $(INSTALL_DATA) $< $@
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32$(PGM): $(exceptions_rel_OBJECTS)
33        $(make-rel)
34
35PREINSTALL_FILES = $(PROJECT_INCLUDE)/libcpu \
36    $(include_libcpu_HEADERS:%=$(PROJECT_INCLUDE)/libcpu/%)
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.