~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/entry/syscalls/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  2 out := arch/$(SRCARCH)/include/generated/asm
  3 uapi := arch/$(SRCARCH)/include/generated/uapi/asm
  4 
  5 # Create output directory if not already present
  6 $(shell mkdir -p $(out) $(uapi))
  7 
  8 syscall32 := $(src)/syscall_32.tbl
  9 syscall64 := $(src)/syscall_64.tbl
 10 
 11 syshdr := $(srctree)/scripts/syscallhdr.sh
 12 systbl := $(srctree)/scripts/syscalltbl.sh
 13 offset :=
 14 prefix :=
 15 
 16 quiet_cmd_syshdr = SYSHDR  $@
 17       cmd_syshdr = $(CONFIG_SHELL) $(syshdr) --abis $(abis) --emit-nr \
 18                 $(if $(offset),--offset $(offset)) \
 19                 $(if $(prefix),--prefix $(prefix)) \
 20                 $< $@
 21 quiet_cmd_systbl = SYSTBL  $@
 22       cmd_systbl = $(CONFIG_SHELL) $(systbl) --abis $(abis) $< $@
 23 
 24 quiet_cmd_hypercalls = HYPERCALLS $@
 25       cmd_hypercalls = $(CONFIG_SHELL) '$<' $@ $(filter-out $<, $(real-prereqs))
 26 
 27 $(uapi)/unistd_32.h: abis := i386
 28 $(uapi)/unistd_32.h: $(syscall32) $(syshdr) FORCE
 29         $(call if_changed,syshdr)
 30 
 31 $(out)/unistd_32_ia32.h: abis := i386
 32 $(out)/unistd_32_ia32.h: prefix := ia32_
 33 $(out)/unistd_32_ia32.h: $(syscall32) $(syshdr) FORCE
 34         $(call if_changed,syshdr)
 35 
 36 $(uapi)/unistd_x32.h: abis := common,x32
 37 $(uapi)/unistd_x32.h: offset := __X32_SYSCALL_BIT
 38 $(uapi)/unistd_x32.h: $(syscall64) $(syshdr) FORCE
 39         $(call if_changed,syshdr)
 40 
 41 $(uapi)/unistd_64.h: abis := common,64
 42 $(uapi)/unistd_64.h: $(syscall64) $(syshdr) FORCE
 43         $(call if_changed,syshdr)
 44 
 45 $(out)/unistd_64_x32.h: abis := x32
 46 $(out)/unistd_64_x32.h: prefix := x32_
 47 $(out)/unistd_64_x32.h: $(syscall64) $(syshdr) FORCE
 48         $(call if_changed,syshdr)
 49 
 50 $(out)/syscalls_32.h: abis := i386
 51 $(out)/syscalls_32.h: $(syscall32) $(systbl) FORCE
 52         $(call if_changed,systbl)
 53 $(out)/syscalls_64.h: abis := common,64
 54 $(out)/syscalls_64.h: $(syscall64) $(systbl) FORCE
 55         $(call if_changed,systbl)
 56 $(out)/syscalls_x32.h: abis := common,x32
 57 $(out)/syscalls_x32.h: $(syscall64) $(systbl) FORCE
 58         $(call if_changed,systbl)
 59 
 60 $(out)/xen-hypercalls.h: $(srctree)/scripts/xen-hypercalls.sh FORCE
 61         $(call if_changed,hypercalls)
 62 
 63 $(out)/xen-hypercalls.h: $(srctree)/include/xen/interface/xen*.h
 64 
 65 uapisyshdr-y                    += unistd_32.h unistd_64.h unistd_x32.h
 66 syshdr-y                        += syscalls_32.h
 67 syshdr-$(CONFIG_X86_64)         += unistd_32_ia32.h unistd_64_x32.h
 68 syshdr-$(CONFIG_X86_64)         += syscalls_64.h
 69 syshdr-$(CONFIG_X86_X32_ABI)    += syscalls_x32.h
 70 syshdr-$(CONFIG_XEN)            += xen-hypercalls.h
 71 
 72 uapisyshdr-y    := $(addprefix $(uapi)/, $(uapisyshdr-y))
 73 syshdr-y        := $(addprefix $(out)/, $(syshdr-y))
 74 targets         += $(addprefix ../../../../, $(uapisyshdr-y) $(syshdr-y))
 75 
 76 PHONY += all
 77 all: $(uapisyshdr-y) $(syshdr-y)
 78         @:

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php