summaryrefslogtreecommitdiffstats
path: root/c/src/wrapup
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-12-12 12:49:49 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-12-12 12:49:49 +0000
commit131814fad0d1391507891bfb425f59dc57a3c1ec (patch)
treecd6ef4a6dc11c1c063868a2f84549c6c15e436a5 /c/src/wrapup
parent2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-131814fad0d1391507891bfb425f59dc57a3c1ec.tar.bz2
2002-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* wrapup/Makefile.am: Use install-data-local to install librtemsbsp.a. Let all-local: depend on $(LIB).
Diffstat (limited to 'c/src/wrapup')
-rw-r--r--c/src/wrapup/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/c/src/wrapup/Makefile.am b/c/src/wrapup/Makefile.am
index f89b794c8f..5fe97715a4 100644
--- a/c/src/wrapup/Makefile.am
+++ b/c/src/wrapup/Makefile.am
@@ -36,7 +36,7 @@ SRCS = $(LIBBSP) $(LIBNETWORKING) $(LIBRDBG) \
TMPINSTALL_FILES += $(LIB)
-all-local: $(ARCH) $(TMPINSTALL_FILES)
+all-local: $(ARCH) $(LIB) $(TMPINSTALL_FILES)
$(LIB): $(SRCS)
rm -f $@
@@ -69,6 +69,8 @@ $(LIB): $(SRCS)
rm -f $(ARCH)/*
$(RANLIB) $@
-bsplib_DATA = $(LIB)
+install-data-local:
+ @$(mkinstalldirs) $(DESTDIR)$(bsplibdir)
+ $(INSTALL_DATA) $(LIB) $(DESTDIR)$(bsplibdir)
include $(top_srcdir)/../../automake/local.am