| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | # | 
					
						
							|  |  |  | # Kbuild for top-level directory of the kernel | 
					
						
							|  |  |  | # This file takes care of the following: | 
					
						
							|  |  |  | # 1) Generate asm-offsets.h | 
					
						
							| 
									
										
										
										
											2007-03-27 22:50:29 +02:00
										 |  |  | # 2) Check for missing system calls | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | ##### | 
					
						
							| 
									
										
										
										
											2005-09-10 21:05:36 +02:00
										 |  |  | # 1) Generate asm-offsets.h | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | offsets-file := include/asm-$(ARCH)/asm-offsets.h | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | always  := $(offsets-file) | 
					
						
							|  |  |  | targets := $(offsets-file) | 
					
						
							|  |  |  | targets += arch/$(ARCH)/kernel/asm-offsets.s | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-09 22:32:31 +02:00
										 |  |  | # Default sed regexp - multiline due to syntax constraints | 
					
						
							|  |  |  | define sed-y | 
					
						
							|  |  |  | 	"/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" | 
					
						
							|  |  |  | endef | 
					
						
							|  |  |  | # Override default regexp for specific architectures | 
					
						
							| 
									
										
										
										
											2006-03-28 00:18:54 +09:00
										 |  |  | sed-$(CONFIG_MIPS) := "/^@@@/{s/^@@@//; s/ \#.*\$$//; p;}" | 
					
						
							| 
									
										
										
										
											2005-09-09 22:32:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | arch/$(ARCH)/kernel/asm-offsets.s: arch/$(ARCH)/kernel/asm-offsets.c FORCE | 
					
						
							|  |  |  | 	$(Q)mkdir -p $(dir $@) | 
					
						
							|  |  |  | 	$(call if_changed_dep,cc_s_c) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-10 21:05:36 +02:00
										 |  |  | $(obj)/$(offsets-file): arch/$(ARCH)/kernel/asm-offsets.s Kbuild | 
					
						
							| 
									
										
										
										
											2006-01-06 18:28:45 -05:00
										 |  |  | 	$(Q)mkdir -p $(dir $@) | 
					
						
							| 
									
										
										
										
											2005-09-09 19:28:28 +02:00
										 |  |  | 	$(call cmd,offsets) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-27 22:50:29 +02:00
										 |  |  | ##### | 
					
						
							|  |  |  | # 2) Check for missing system calls | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | quiet_cmd_syscalls = CALL    $< | 
					
						
							|  |  |  |       cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PHONY += missing-syscalls | 
					
						
							|  |  |  | missing-syscalls: scripts/checksyscalls.sh FORCE | 
					
						
							|  |  |  | 	$(call cmd,syscalls) |