| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | # | 
					
						
							|  |  |  | # Kbuild for top-level directory of the kernel | 
					
						
							|  |  |  | # This file takes care of the following: | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | # 1) Generate bounds.h | 
					
						
							|  |  |  | # 2) Generate asm-offsets.h (may need bounds.h) | 
					
						
							|  |  |  | # 3) Check for missing system calls | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | ##### | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | # 1) Generate bounds.h | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-19 21:57:19 +02:00
										 |  |  | bounds-file := include/generated/bounds.h | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | always  := $(bounds-file) | 
					
						
							|  |  |  | targets := $(bounds-file) kernel/bounds.s | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | quiet_cmd_bounds = GEN     $@ | 
					
						
							|  |  |  | define cmd_bounds | 
					
						
							|  |  |  | 	(set -e; \ | 
					
						
							|  |  |  | 	 echo "#ifndef __LINUX_BOUNDS_H__"; \ | 
					
						
							|  |  |  | 	 echo "#define __LINUX_BOUNDS_H__"; \ | 
					
						
							|  |  |  | 	 echo "/*"; \ | 
					
						
							|  |  |  | 	 echo " * DO NOT MODIFY."; \ | 
					
						
							|  |  |  | 	 echo " *"; \ | 
					
						
							|  |  |  | 	 echo " * This file was generated by Kbuild"; \ | 
					
						
							|  |  |  | 	 echo " *"; \ | 
					
						
							|  |  |  | 	 echo " */"; \ | 
					
						
							|  |  |  | 	 echo ""; \ | 
					
						
							|  |  |  | 	 sed -ne $(sed-y) $<; \ | 
					
						
							|  |  |  | 	 echo ""; \ | 
					
						
							|  |  |  | 	 echo "#endif" ) > $@ | 
					
						
							|  |  |  | endef | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # We use internal kbuild rules to avoid the "is up to date" message from make | 
					
						
							|  |  |  | kernel/bounds.s: kernel/bounds.c FORCE | 
					
						
							|  |  |  | 	$(Q)mkdir -p $(dir $@) | 
					
						
							|  |  |  | 	$(call if_changed_dep,cc_s_c) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $(obj)/$(bounds-file): kernel/bounds.s Kbuild | 
					
						
							|  |  |  | 	$(Q)mkdir -p $(dir $@) | 
					
						
							|  |  |  | 	$(call cmd,bounds) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ##### | 
					
						
							|  |  |  | # 2) Generate asm-offsets.h | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-19 22:35:10 +02:00
										 |  |  | offsets-file := include/generated/asm-offsets.h | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | always  += $(offsets-file) | 
					
						
							|  |  |  | targets += $(offsets-file) | 
					
						
							| 
									
										
										
										
											2007-10-11 11:11:36 +02:00
										 |  |  | targets += arch/$(SRCARCH)/kernel/asm-offsets.s | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-09 22:32:31 +02:00
										 |  |  | # Default sed regexp - multiline due to syntax constraints | 
					
						
							|  |  |  | define sed-y | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:45 -07:00
										 |  |  | 	"/^->/{s:->#\(.*\):/* \1 */:; \ | 
					
						
							| 
									
										
										
										
											2010-10-27 17:28:32 +01:00
										 |  |  | 	s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \ | 
					
						
							| 
									
										
										
										
											2010-10-21 23:30:49 +02:00
										 |  |  | 	s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:45 -07:00
										 |  |  | 	s:->::; p;}" | 
					
						
							| 
									
										
										
										
											2005-09-09 22:32:31 +02:00
										 |  |  | endef | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | quiet_cmd_offsets = GEN     $@ | 
					
						
							|  |  |  | define cmd_offsets | 
					
						
							|  |  |  | 	(set -e; \ | 
					
						
							|  |  |  | 	 echo "#ifndef __ASM_OFFSETS_H__"; \ | 
					
						
							|  |  |  | 	 echo "#define __ASM_OFFSETS_H__"; \ | 
					
						
							|  |  |  | 	 echo "/*"; \ | 
					
						
							|  |  |  | 	 echo " * DO NOT MODIFY."; \ | 
					
						
							|  |  |  | 	 echo " *"; \ | 
					
						
							| 
									
										
										
										
											2006-07-25 18:42:26 -07:00
										 |  |  | 	 echo " * This file was generated by Kbuild"; \ | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 	 echo " *"; \ | 
					
						
							|  |  |  | 	 echo " */"; \ | 
					
						
							|  |  |  | 	 echo ""; \ | 
					
						
							| 
									
										
										
										
											2006-01-06 18:28:45 -05:00
										 |  |  | 	 sed -ne $(sed-y) $<; \ | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 	 echo ""; \ | 
					
						
							|  |  |  | 	 echo "#endif" ) > $@ | 
					
						
							|  |  |  | endef | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # We use internal kbuild rules to avoid the "is up to date" message from make | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c \ | 
					
						
							|  |  |  |                                       $(obj)/$(bounds-file) FORCE | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 	$(Q)mkdir -p $(dir $@) | 
					
						
							|  |  |  | 	$(call if_changed_dep,cc_s_c) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-11 11:11:36 +02:00
										 |  |  | $(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s Kbuild | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 	$(call cmd,offsets) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-27 22:50:29 +02:00
										 |  |  | ##### | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | # 3) Check for missing system calls | 
					
						
							| 
									
										
										
										
											2007-03-27 22:50:29 +02:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 21:03:30 -04:00
										 |  |  | always += missing-syscalls | 
					
						
							|  |  |  | targets += missing-syscalls | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-27 22:50:29 +02:00
										 |  |  | quiet_cmd_syscalls = CALL    $< | 
					
						
							| 
									
										
										
										
											2011-11-08 10:20:10 -08:00
										 |  |  |       cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags) | 
					
						
							| 
									
										
										
										
											2007-03-27 22:50:29 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-24 21:03:30 -04:00
										 |  |  | missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE | 
					
						
							| 
									
										
										
										
											2007-03-27 22:50:29 +02:00
										 |  |  | 	$(call cmd,syscalls) | 
					
						
							| 
									
										
										
										
											2008-04-28 02:12:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-09 16:00:20 +01:00
										 |  |  | # Keep these two files during make clean | 
					
						
							|  |  |  | no-clean-files := $(bounds-file) $(offsets-file) |