Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285909
b: refs/heads/master
c: d181764
h: refs/heads/master
i:
  285907: 53d37ce
v: v3
  • Loading branch information
H. Peter Anvin committed Nov 17, 2011
1 parent a0fbae6 commit b361431
Show file tree
Hide file tree
Showing 6 changed files with 772 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d5e553d6e0a4bdea43adae7373e3fa144b9a1aaa
refs/heads/master: d181764ccf6207e02abb95fb3052639b947f4833
43 changes: 43 additions & 0 deletions trunk/arch/x86/syscalls/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
out := $(obj)/../include/generated/asm

# Create output directory if not already present
_dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)')

syscall32 := $(srctree)/$(src)/syscall_32.tbl
syscall64 := $(srctree)/$(src)/syscall_64.tbl

syshdr := $(srctree)/$(src)/syscallhdr.sh
systbl := $(srctree)/$(src)/syscalltbl.sh

quiet_cmd_syshdr = SYSHDR $@
cmd_syshdr = $(CONFIG_SHELL) '$(syshdr)' $< $@ \
$(syshdr_abi_$(basetarget)) $(syshdr_pfx_$(basetarget))
quiet_cmd_systbl = SYSTBL $@
cmd_systbl = $(CONFIG_SHELL) '$(systbl)' $< $@

syshdr_abi_unistd_32 := i386
$(out)/unistd_32.h: $(syscall32) $(syshdr)
$(call if_changed,syshdr)

syshdr_abi_unistd_32_ia32 := i386
syshdr_pfx_unistd_32_ia32 := ia32_
$(out)/unistd_32_ia32.h: $(syscall32) $(syshdr)
$(call if_changed,syshdr)

syshdr_abi_unistd_64 := 64
$(out)/unistd_64.h: $(syscall64) $(syshdr)
$(call if_changed,syshdr)

$(out)/syscalls_32.h: $(syscall32) $(systbl)
$(call if_changed,systbl)
$(out)/syscalls_64.h: $(syscall64) $(systbl)
$(call if_changed,systbl)

syshdr-y += unistd_32.h unistd_64.h
syshdr-y += syscalls_32.h
syshdr-$(CONFIG_X86_64) += unistd_32_ia32.h
syshdr-$(CONFIG_X86_64) += syscalls_64.h

targets += $(syshdr-y)

all: $(addprefix $(out)/,$(targets))
Loading

0 comments on commit b361431

Please sign in to comment.