Changeset 251
- Timestamp:
- Apr 12, 2005, 7:06:17 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/footer.kmk
r250 r251 691 691 $(eval tool := $(call _TARGET_TOOL,$(target),LD)) 692 692 $(eval outbase := $(call _TARGET_BASE,$(target),$(target))) 693 $(eval objs = $(_OBJS_$(target)) )693 $(eval objs = $(_OBJS_$(target)) $(filter %.o %.obj, $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 694 694 $(eval flags :=\ 695 695 $(TOOL_$(tool)_LDFLAGS)\ … … 799 799 $(CUSTOM_POST)\ 800 800 ))) 801 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm ,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type))))801 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm %.o %.obj,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 802 802 803 803 ifndef TOOL_$(tool)_LINK_PROGRAM … … 878 878 $($(target)_ARFLAGS.$(bld_type))\ 879 879 ) 880 $(eval objs = $(_OBJS_$(target)) )881 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm ,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type))))880 $(eval objs = $(_OBJS_$(target)) $(filter %.o %.obj, $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 881 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm %.o %.obj,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 882 882 $(eval dirdep := $(dir $(lib)).dir_created) 883 883 ## @todo fix dependencies on makefiles an such … … 933 933 $(eval tool := $(call _TARGET_TOOL,$(target),LD)) 934 934 $(eval outbase := $(call _TARGET_BASE,$(target),$(target))) 935 $(eval objs = $(_OBJS_$(target))) 935 $(eval objs = $(_OBJS_$(target)) $(filter %.o %.obj, $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 936 936 937 $(eval flags :=\ 937 938 $(TOOL_$(tool)_LDFLAGS)\ … … 1041 1042 $(CUSTOM_POST)\ 1042 1043 ))) 1043 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm ,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type))))1044 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm %.o %.obj,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 1044 1045 1045 1046 ifndef TOOL_$(tool)_LINK_DLL … … 1121 1122 $(eval tool := $(call _TARGET_TOOL,$(target),LD)) 1122 1123 $(eval outbase := $(call _TARGET_BASE,$(target),$(target))) 1123 $(eval objs = $(_OBJS_$(target))) 1124 $(eval objs = $(_OBJS_$(target)) $(filter %.o %.obj, $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 1125 1124 1126 $(eval flags :=\ 1125 1127 $(TOOL_$(tool)_LDFLAGS)\ … … 1229 1231 $(CUSTOM_POST)\ 1230 1232 ))) 1231 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm ,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type))))1233 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm %.o %.obj,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 1232 1234 1233 1235 $(eval $(TOOL_$(tool)_LINK_PROGRAM)) … … 1279 1281 $(eval tool := $(call _TARGET_TOOL,$(target),LD)) 1280 1282 $(eval outbase := $(call _TARGET_BASE,$(target),$(target))) 1281 $(eval objs = $(_OBJS_$(target))) 1283 $(eval objs = $(_OBJS_$(target)) $(filter %.o %.obj, $($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 1284 1282 1285 $(eval flags :=\ 1283 1286 $(TOOL_$(tool)_LDFLAGS)\ … … 1387 1390 $(CUSTOM_POST)\ 1388 1391 ))) 1389 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm ,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type))))1392 $(eval othersrc := $(filter-out %.c %.cpp %.cxx %.cc %.s %.S %.asm %.o %.obj,$($(target)_SOURCES) $($(target)_SOURCES.$(bld_trg)) $($(target)_SOURCES.$(bld_type)))) 1390 1393 1391 1394 ifndef TOOL_$(tool)_LINK_SYSMOD
Note:
See TracChangeset
for help on using the changeset viewer.