mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Including from tools/lib can create inadvertent dependencies. Install libsubcmd in the objtool build and then include the headers from there. Signed-off-by: Ian Rogers <irogers@google.com> Link: https://lore.kernel.org/r/20230126190606.40739-2-irogers@google.com Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			728 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			728 B
		
	
	
	
		
			Text
		
	
	
	
	
	
objtool-y += arch/$(SRCARCH)/
 | 
						|
 | 
						|
objtool-y += weak.o
 | 
						|
 | 
						|
objtool-y += check.o
 | 
						|
objtool-y += special.o
 | 
						|
objtool-y += builtin-check.o
 | 
						|
objtool-y += elf.o
 | 
						|
objtool-y += objtool.o
 | 
						|
 | 
						|
objtool-$(BUILD_ORC) += orc_gen.o
 | 
						|
objtool-$(BUILD_ORC) += orc_dump.o
 | 
						|
 | 
						|
objtool-y += libstring.o
 | 
						|
objtool-y += libctype.o
 | 
						|
objtool-y += str_error_r.o
 | 
						|
objtool-y += librbtree.o
 | 
						|
 | 
						|
$(OUTPUT)libstring.o: ../lib/string.c FORCE
 | 
						|
	$(call rule_mkdir)
 | 
						|
	$(call if_changed_dep,cc_o_c)
 | 
						|
 | 
						|
$(OUTPUT)libctype.o: ../lib/ctype.c FORCE
 | 
						|
	$(call rule_mkdir)
 | 
						|
	$(call if_changed_dep,cc_o_c)
 | 
						|
 | 
						|
$(OUTPUT)str_error_r.o: ../lib/str_error_r.c FORCE
 | 
						|
	$(call rule_mkdir)
 | 
						|
	$(call if_changed_dep,cc_o_c)
 | 
						|
 | 
						|
$(OUTPUT)librbtree.o: ../lib/rbtree.c FORCE
 | 
						|
	$(call rule_mkdir)
 | 
						|
	$(call if_changed_dep,cc_o_c)
 |