From 8cfb8effb717df945345963a0144d31f783c62ba Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Mon, 28 Jan 2013 17:50:23 +0000 Subject: [PATCH] attempt to fix parallel building --- Makefile.libs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.libs b/Makefile.libs index 6182580be..ee30b3e4d 100644 --- a/Makefile.libs +++ b/Makefile.libs @@ -96,6 +96,12 @@ LDFLAGS:=$(LIB_LDFLAGS) $(NAME_LD_FLAGS) NAME:=$(LIB_NAME) +.PHONY: lib_all +lib_all: + @$(MAKE) $(NAME) + @$(MAKE) $(LIB_RUNTIME_NAME) + @$(MAKE) $(LIB_LINK_NAME) + include $(COREPATH)/Makefile.targets include $(COREPATH)/Makefile.rules @@ -108,7 +114,7 @@ endif endif endif -$(NAME): $(LIB_RUNTIME_NAME) $(LIB_LINK_NAME) $(LIBINAME_F) +$(NAME): $(LIBINAME_F) $(LIB_RUNTIME_NAME): -@ln -s $(LIB_NAME) $(LIB_RUNTIME_NAME)