source: rtems/c/src/lib/libbsp/powerpc/support/old_exception_processing/Makefile.am @ 8d6eee18

4.104.114.84.95
Last change on this file since 8d6eee18 was 8d6eee18, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 07:06:08

2002-08-11 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5ACLOCAL_AMFLAGS = -I ../../../../../../../aclocal
6
7# C source names
8C_FILES = cpu.c
9C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
10
11include_rtems_scoredir = $(includedir)/rtems/score
12include_rtems_score_HEADERS = rtems/score/ppc_offs.h
13
14# Assembly source names
15S_FILES = cpu_asm.S
16S_O_FILES = $(S_FILES:%.S=${ARCH}/%.$(OBJEXT))
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../../../../../automake/compile.am
20include $(top_srcdir)/../../../../../../../automake/lib.am
21
22AM_CPPFLAGS += -I$(srcdir)
23
24TMPINSTALL_FILES += $(PROJECT_INCLUDE) $(PROJECT_INCLUDE)/rtems/score \
25    $(include_rtems_score_HEADERS:%=$(PROJECT_INCLUDE)/%)
26
27$(PROJECT_INCLUDE):
28        $(mkinstalldirs) $@
29
30$(PROJECT_INCLUDE)/rtems/score:
31        $(mkinstalldirs) $@
32
33$(PROJECT_INCLUDE)/%: %
34        $(INSTALL_DATA) $< $@
35
36REL = $(ARCH)/rtems-cpu.rel
37
38$(REL): $(C_O_FILES) $(S_O_FILES)
39        $(make-rel)
40
41all-local: $(ARCH) $(TMPINSTALL_FILES) $(REL)
42
43UNUSED_FILES = irq_stub.S
44
45EXTRA_DIST = TODO $(C_FILES) $(S_FILES) $(UNUSED_FILES)
46
47include $(top_srcdir)/../../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.