From 7b3ce39538c890442a2e46b57bf1911ef7ab8ff8 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Sat, 29 Jul 2017 21:04:09 -0700 Subject: Don't compile non-lib modules as lib modules [BZ #21864] Some programs have more than one source files. These non-lib modules should not be compiled with -DMODULE_NAME=libc. This patch puts these non-lib modules in $(others-extras) and adds $(others-extras) to all-nonlib. [BZ #21864] * Makerules (all-nonlib): Add $(others-extras). * catgets/Makefile (others-extras): New. * elf/Makefile (others-extras): Likewise. * nss/Makefile (others-extras): Likewise. --- Makerules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makerules') diff --git a/Makerules b/Makerules index 9bb707c168..8f1324d8e9 100644 --- a/Makerules +++ b/Makerules @@ -1359,7 +1359,8 @@ lib := testsuite include $(patsubst %,$(..)libof-iterator.mk,$(cpp-srcs-left)) endif -all-nonlib := $(strip $(tests-internal) $(test-internal-extras) $(others)) +all-nonlib := $(strip $(tests-internal) $(test-internal-extras) \ + $(others) $(others-extras)) ifneq (,$(all-nonlib)) cpp-srcs-left = $(all-nonlib) lib := nonlib -- cgit 1.4.1