summaryrefslogtreecommitdiffstats
path: root/automake/lib.am
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 09:17:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 09:17:40 +0000
commit35b22754c2772843c7ccf9818a86d5dc1d36efe8 (patch)
tree575dccdd2fa6868344819392787f50054af8c8b6 /automake/lib.am
parent2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-35b22754c2772843c7ccf9818a86d5dc1d36efe8.tar.bz2
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-configure.m4: Add RTEMS_CHECK_MULTIPROCESSING. * automake/compile.am: Add test -d $(ARCH) || mkdir $(ARCH) to all compilation rules (Work-around to an automake bug). * automake/lib.am: Add test -d $(ARCH) || mkdir $(ARCH) to make-library.
Diffstat (limited to 'automake/lib.am')
-rw-r--r--automake/lib.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/automake/lib.am b/automake/lib.am
index 7cb9db1148..cebdc20377 100644
--- a/automake/lib.am
+++ b/automake/lib.am
@@ -9,14 +9,15 @@ RANLIB = @RANLIB@
ARFLAGS = ruv
define make-library
+test -d $(ARCH) || mkdir $(ARCH)
$(RM) $@
$(AR) $(ARFLAGS) $@ $^
$(RANLIB) $@
endef
-$(PROJECT_RELEASE)/lib$(MULTISUBDIR):
+$(PROJECT_RELEASE)/lib:
@$(mkinstalldirs) $@
-TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib$(MULTISUBDIR)
+TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
.PRECIOUS: $(LIB)