2002-07-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* Makefile.am: explicitly create $(ARCH) when building $(LIB).
	Add bsplib_DATA = $(LIB).
This commit is contained in:
Ralf Corsepius
2002-07-03 20:16:01 +00:00
parent e6938b4d26
commit 2984cf1bc7
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2002-07-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: explicitly create $(ARCH) when building $(LIB).
Add bsplib_DATA = $(LIB).
2002-06-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Pickup libbsp.a from build directory.

View File

@@ -39,6 +39,7 @@ all-local: $(ARCH) $(TMPINSTALL_FILES)
$(LIB): $(SRCS)
rm -f $@
rm -rf $(ARCH)/*
test -d $(ARCH) || mkdir $(ARCH)
for f in $(SRCS); do \
case $$f in \
*.o | *.rel) \
@@ -66,4 +67,7 @@ $(LIB): $(SRCS)
rm -f $(ARCH)/*
$(RANLIB) $@
bsplibdir = $(libdir)/@RTEMS_BSP@/lib
bsplib_DATA = $(LIB)
include $(top_srcdir)/../../../automake/local.am