 7a04fc94d9
			
		
	
	
	7a04fc94d9
	
	
	
		
			
			Do nothing if arch/$(SRCARCH)/include/asm/Kbuild does not exist, which is the case of um. Reported-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Michal Marek <mmarek@suse.cz> Acked-by: Randy Dunlap <rdunlap@xenotime.net> Acked-by: Sam Ravnborg <sam@ravnborg.org>
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			677 B
			
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			677 B
			
		
	
	
	
		
			Text
		
	
	
	
	
	
| # include/asm-generic contains a lot of files that are used
 | |
| # verbatim by several architectures.
 | |
| #
 | |
| # This Makefile reads the file arch/$(SRCARCH)/include/asm/Kbuild
 | |
| # and for each file listed in this file with generic-y creates
 | |
| # a small wrapper file in $(obj) (arch/$(SRCARCH)/include/generated/asm)
 | |
| 
 | |
| kbuild-file := $(srctree)/arch/$(SRCARCH)/include/asm/Kbuild
 | |
| -include $(kbuild-file)
 | |
| 
 | |
| include scripts/Kbuild.include
 | |
| 
 | |
| # Create output directory if not already present
 | |
| _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
 | |
| 
 | |
| quiet_cmd_wrap = WRAP    $@
 | |
| cmd_wrap = echo "\#include <asm-generic/$*.h>" >$@
 | |
| 
 | |
| all: $(patsubst %, $(obj)/%, $(generic-y))
 | |
| 
 | |
| $(obj)/%.h:
 | |
| 	$(call cmd,wrap)
 | |
| 
 |