summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-02-08 17:12:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-02-08 17:12:16 +0000
commit062ed08799b8c7c58ec1627576e30c810192fef7 (patch)
tree17592c9139475b50d6b5222872770900a94e9b76
parent2004-02-06 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-062ed08799b8c7c58ec1627576e30c810192fef7.tar.bz2
2004-02-08 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: Add irq.h and vectors.h
-rw-r--r--c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog4
-rw-r--r--c/src/lib/libbsp/powerpc/mbx8xx/Makefile.am11
2 files changed, 14 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog b/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog
index 3d95f8ee31..bb076067cc 100644
--- a/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/mbx8xx/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-08 Joel Sherrill <joel@OARcorp.com>
+
+ * Makefile.am: Add irq.h and vectors.h
+
2004-02-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Convert to automake-building rules.
diff --git a/c/src/lib/libbsp/powerpc/mbx8xx/Makefile.am b/c/src/lib/libbsp/powerpc/mbx8xx/Makefile.am
index ebe36e6d9d..6c6c6e92d3 100644
--- a/c/src/lib/libbsp/powerpc/mbx8xx/Makefile.am
+++ b/c/src/lib/libbsp/powerpc/mbx8xx/Makefile.am
@@ -18,7 +18,8 @@ noinst_DATA =
include_bspdir = $(includedir)/bsp
include_HEADERS += include/coverhd.h
-include_bsp_HEADERS = include/mbx.h include/commproc.h include/8xx_immap.h
+include_bsp_HEADERS = include/mbx.h include/commproc.h include/8xx_immap.h \
+ irq/irq.h vectors/vectors.h
EXTRA_DIST = times-mbx821 times-mbx860
@@ -157,6 +158,14 @@ $(PROJECT_INCLUDE)/bsp/8xx_immap.h: include/8xx_immap.h $(PROJECT_INCLUDE)/bsp/$
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/8xx_immap.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/8xx_immap.h
+$(PROJECT_INCLUDE)/bsp/irq.h: irq/irq.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
+ $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/irq.h
+PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/irq.h
+
+$(PROJECT_INCLUDE)/bsp/vectors.h: vectors/vectors.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
+ $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/vectors.h
+PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/vectors.h
+
$(PROJECT_LIB)/linkcmds: startup/linkcmds $(PROJECT_LIB)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_LIB)/linkcmds
TMPINSTALL_FILES += $(PROJECT_LIB)/linkcmds