source: rtems/c/src/lib/libbsp/powerpc/mvme5500/vectors/Makefile.am @ 7be6ad9

4.104.114.84.95
Last change on this file since 7be6ad9 was 7be6ad9, checked in by Eric Norum <WENorum@…>, on 10/20/04 at 15:21:05

Add MVME550 BSP

  • Property mode set to 100644
File size: 1.1 KB
Line 
1##
2## $Id$
3##
4
5VPATH = @srcdir@:@srcdir@/../console:@srcdir@/../../shared/vectors
6
7C_FILES = vectors_init.c exceptionhandler.c
8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
9
10H_FILES = ../../shared/vectors/vectors.h bspException.h
11
12include_bspdir = $(includedir)/bsp
13include_bsp_HEADERS = ../../shared/vectors/vectors.h bspException.h
14
15S_FILES = vectors.S
16S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
17
18OBJS = $(S_O_FILES) $(C_O_FILES)
19
20include $(top_srcdir)/../../../../../../automake/compile.am
21include $(top_srcdir)/../../../../../../automake/lib.am
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
27EXTRA_DIST = bspException.h exceptionhandler.c
28
29$(PGM): $(OBJS)
30        $(make-rel)
31
32$(PROJECT_INCLUDE)/bsp:
33        $(mkinstalldirs) $@
34
35$(PROJECT_INCLUDE)/bsp/vectors.h: ../../shared/vectors/vectors.h
36        $(INSTALL_DATA) $< $@
37
38$(PROJECT_INCLUDE)/bsp/bspException.h: bspException.h
39        $(INSTALL_DATA) $< $@
40
41PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vectors.h
43PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bspException.h
44
45all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
46
47include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.