source: rtems/c/src/lib/libbsp/powerpc/psim/vectors/Makefile.am @ 561f53b

Last change on this file since 561f53b was 561f53b, checked in by Jennifer Averett <Jennifer.Averett@…>, on 11/22/04 at 22:30:59

2004-11-22 Jennifer Averett <jennifer@…>

PR 581/bsps

  • Makefile.am, bsp_specs, configure.ac, clock/Makefile.am, include/bsp.h, start/Makefile.am, start/start.S, startup/Makefile.am, startup/bspstart.c, startup/linkcmds, vectors/Makefile.am, vectors/vectors.S, wrapup/Makefile.am: Convert PSIM to new exception model.
  • irq/Makefile.am, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: New files.
  • clock/clock.c: Removed.
  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[df49c60]1##
[4e36a2f]2## $Id$
[df49c60]3##
[4e36a2f]4
5
[561f53b]6VPATH = @srcdir@:@srcdir@/../console:@srcdir@/../../shared/vectors
[4e36a2f]7
[561f53b]8C_FILES = vectors_init.c
9C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
10
11H_FILES = ../../shared/vectors/vectors.h
12
13S_FILES = vectors.S
[d869f64e]14S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
[4e36a2f]15
[561f53b]16OBJS = $(S_O_FILES) $(C_O_FILES)
[4e36a2f]17
[72965527]18include $(top_srcdir)/../../../../../../automake/compile.am
[4e36a2f]19include $(top_srcdir)/../../../../../../automake/lib.am
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25$(PGM): $(OBJS)
26        $(make-rel)
27
[561f53b]28include_bspdir = $(includedir)/bsp
29include_bsp_HEADERS = ../../shared/vectors/vectors.h
30
31$(PROJECT_INCLUDE)/bsp:
32        $(mkinstalldirs) $@
[4e36a2f]33
[561f53b]34$(PROJECT_INCLUDE)/bsp/vectors.h: ../../shared/vectors/vectors.h
35        $(INSTALL_DATA) $< $@
[4e36a2f]36
[561f53b]37TMPINSTALL_FILES += $(PROJECT_INCLUDE)
38TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp
39TMPINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vectors.h
[4e36a2f]40
[561f53b]41all-local: $(ARCH) $(TMPINSTALL_FILES) $(OBJS)
[4e36a2f]42
[561f53b]43include $(top_srcdir)/../../../../../../automake/force-preinstall.am
[4e36a2f]44include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.