source: rtems/c/src/lib/libbsp/powerpc/support/new_exception_processing/Makefile.am @ fe8bc62f

4.104.114.84.95
Last change on this file since fe8bc62f was fe8bc62f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/18/03 at 06:47:09

2003-08-18 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Reflect having moved aclocal/.
  • Property mode set to 100644
File size: 925 bytes
Line 
1##
2## $Id$
3##
4
5
6ACLOCAL_AMFLAGS = -I ../../../../../aclocal
7
8C_FILES = cpu.c
9C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
10
11include_rtems_scoredir = $(includedir)/rtems/score
12
13include_rtems_score_HEADERS =
14
15S_FILES = cpu_asm.S
16S_O_FILES = $(S_FILES:%.S=${ARCH}/%.$(OBJEXT))
17
18include $(top_srcdir)/../../../../../automake/compile.am
19include $(top_srcdir)/../../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25TMPINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems/score \
26    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/%)
27
28$(PROJECT_INCLUDE):
29        $(mkinstalldirs) $@
30
31$(PROJECT_INCLUDE)/rtems/score:
32        $(mkinstalldirs) $@
33
34$(PROJECT_INCLUDE)/%: %
35        $(INSTALL_DATA) $< $@
36
37REL = $(ARCH)/rtems-cpu.rel
38
39$(REL): $(C_O_FILES) $(S_O_FILES)
40        $(make-rel)
41
42all-local: $(ARCH) $(TMPINSTALL_FILES) $(REL)
43
44EXTRA_DIST = $(C_FILES) $(S_FILES)
45
46include $(top_srcdir)/../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.