diff --git a/c/src/ChangeLog b/c/src/ChangeLog index 012fa96620..929e1de102 100644 --- a/c/src/ChangeLog +++ b/c/src/ChangeLog @@ -1,3 +1,8 @@ +2002-12-12 Ralf Corsepius + + * wrapup/Makefile.am: Use install-data-local to install librtemsbsp.a. + Let all-local: depend on $(LIB). + 2002-12-12 Ralf Corsepius * wrapup/Makefile.am: Remove libmisc. 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