]> Git Repo - uclibc-ng.git/commitdiff
buildsys: fix IS_IN_lib* for .s
authorBernhard Reutner-Fischer <[email protected]>
Mon, 23 Mar 2015 23:11:41 +0000 (00:11 +0100)
committerBernhard Reutner-Fischer <[email protected]>
Mon, 23 Mar 2015 23:11:41 +0000 (00:11 +0100)
Signed-off-by: Bernhard Reutner-Fischer <[email protected]>
Makerules

index a60338a8719aa421835cbbb58ab0ce87d2f00bf7..fd6bb190d88e8c2ff12f5ff56feb50505e29b79a 100644 (file)
--- a/Makerules
+++ b/Makerules
@@ -29,7 +29,9 @@ objs: all_objs
 # apply unconditional per-directory flags
 define add_IS_IN_lib
 ifneq ($(strip $(2)),)
-__add_IS_IN_lib := $(2) $(2:.o=.i) $(2:.os=.i) $(2:.oS=.i)
+__add_IS_IN_lib := $(2)
+__add_IS_IN_lib += $(2:.o=.i) $(2:.os=.i) $(2:.oS=.i)
+__add_IS_IN_lib += $(2:.o=.s) $(2:.os=.s) $(2:.oS=.s)
 $$(__add_IS_IN_lib): CFLAGS-for-library-members:=$(CFLAGS-$(1)) -DIN_LIB=$(word 1,$(subst /, ,$(1)))
 endif
 endef
This page took 0.025903 seconds and 4 git commands to generate.