4af6033324
syscalls.conf is included using "." which per the Open Group: If file does not contain a <slash>, the shell shall use the search path specified by PATH to find the directory containing file. POSIX shells don't fall back to the current working directory. Submitted by: Nathaniel Wesley Filardo <nwf20@cl.cam.ac.uk> Reviewed by: bdrewery Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D20476
18 lines
537 B
Makefile
18 lines
537 B
Makefile
# $FreeBSD$
|
|
|
|
# Don't use an OBJDIR
|
|
.OBJDIR: ${.CURDIR}
|
|
|
|
all:
|
|
@echo "make sysent only"
|
|
|
|
sysent: cloudabi32_sysent.c cloudabi32_syscall.h cloudabi32_proto.h \
|
|
cloudabi32_syscalls.c cloudabi32_systrace_args.c
|
|
|
|
cloudabi32_sysent.c cloudabi32_syscall.h cloudabi32_proto.h \
|
|
cloudabi32_syscalls.c cloudabi32_systrace_args.c: \
|
|
../../kern/makesyscalls.sh ../../contrib/cloudabi/syscalls32.master \
|
|
${.CURDIR}/syscalls.conf
|
|
sh ../../kern/makesyscalls.sh ../../contrib/cloudabi/syscalls32.master \
|
|
${.CURDIR}/syscalls.conf
|