summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mvme5500/vectors
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-10-21 08:28:07 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-10-21 08:28:07 +0000
commitf61731c71a0242083ff4fb8b6a7f165191fd3ace (patch)
tree5330194a184edc90a390974ccbdf52a24deb7d05 /c/src/lib/libbsp/powerpc/mvme5500/vectors
parent2004-10-21 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-f61731c71a0242083ff4fb8b6a7f165191fd3ace.tar.bz2
Remove (obsolete).
Diffstat (limited to 'c/src/lib/libbsp/powerpc/mvme5500/vectors')
-rw-r--r--c/src/lib/libbsp/powerpc/mvme5500/vectors/Makefile.am47
1 files changed, 0 insertions, 47 deletions
diff --git a/c/src/lib/libbsp/powerpc/mvme5500/vectors/Makefile.am b/c/src/lib/libbsp/powerpc/mvme5500/vectors/Makefile.am
deleted file mode 100644
index d62b94615f..0000000000
--- a/c/src/lib/libbsp/powerpc/mvme5500/vectors/Makefile.am
+++ /dev/null
@@ -1,47 +0,0 @@
-##
-## $Id$
-##
-
-VPATH = @srcdir@:@srcdir@/../console:@srcdir@/../../shared/vectors
-
-C_FILES = vectors_init.c exceptionhandler.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
-
-H_FILES = ../../shared/vectors/vectors.h bspException.h
-
-include_bspdir = $(includedir)/bsp
-include_bsp_HEADERS = ../../shared/vectors/vectors.h bspException.h
-
-S_FILES = vectors.S
-S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.$(OBJEXT))
-
-OBJS = $(S_O_FILES) $(C_O_FILES)
-
-include $(top_srcdir)/../../../../../../automake/compile.am
-include $(top_srcdir)/../../../../../../automake/lib.am
-
-#
-# (OPTIONAL) Add local stuff here using +=
-#
-
-EXTRA_DIST = bspException.h exceptionhandler.c
-
-$(PGM): $(OBJS)
- $(make-rel)
-
-$(PROJECT_INCLUDE)/bsp:
- $(mkinstalldirs) $@
-
-$(PROJECT_INCLUDE)/bsp/vectors.h: ../../shared/vectors/vectors.h
- $(INSTALL_DATA) $< $@
-
-$(PROJECT_INCLUDE)/bsp/bspException.h: bspException.h
- $(INSTALL_DATA) $< $@
-
-PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vectors.h
-PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bspException.h
-
-all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)
-
-include $(top_srcdir)/../../../../../../automake/local.am