Differences From Artifact [8e0dfa3404]:
- File arch/makefile — part of check-in [860229e8ce] at 2019-06-27 09:57:30 on branch trunk — add in mechanism to generate syscall tables for x86 linux (user: lexi, size: 236) [annotate] [blame] [check-ins using]
To Artifact [657c34aa94]:
- File arch/makefile — part of check-in [21467a6dc9] at 2019-06-27 12:13:43 on branch trunk — updates (user: lexi, size: 270) [annotate] [blame] [check-ins using]
1 2 3 4 |
calls.x86.lin.32.s: /usr/include/asm/unistd_32.h grep "#define __NR_" $< | sed "s;^#define __NR_;%define sys.;" > $@ calls.x86.lin.64.s: /usr/include/asm/unistd_64.h grep "#define __NR_" $< | sed "s;^#define __NR_;%define sys.;" > $@ |
| > | |
1 2 3 4 5 |
linux-headers = /usr/include/asm/ calls.x86.lin.32.s: $(linux-headers)/unistd_32.h grep "#define __NR_" $< | sed "s;^#define __NR_;%define sys.;" > $@ calls.x86.lin.64.s: $(linux-headers)/unistd_64.h grep "#define __NR_" $< | sed "s;^#define __NR_;%define sys.;" > $@ |