From 35b22754c2772843c7ccf9818a86d5dc1d36efe8 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 22 Jul 2002 09:17:40 +0000 Subject: 2002-07-22 Ralf Corsepius * 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. --- automake/lib.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'automake/lib.am') 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) -- cgit v1.2.3