mirror of
https://github.com/opnsense/src.git
synced 2026-03-17 16:14:58 -04:00
flua is bootstrapped as part of the build for those on older versions/revisions that don't yet have flua installed. Once upgraded past r354833, "make sysent" will again naturally work as expected. Reviewed by: brooks Differential Revision: https://reviews.freebsd.org/D21894
19 lines
568 B
Makefile
19 lines
568 B
Makefile
# $FreeBSD$
|
|
|
|
# Don't use an OBJDIR
|
|
.OBJDIR: ${.CURDIR}
|
|
|
|
.include <src.lua.mk>
|
|
|
|
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: \
|
|
../../tools/makesyscalls.lua ../../contrib/cloudabi/syscalls32.master \
|
|
${.CURDIR}/syscalls.conf
|
|
${LUA} ../../tools/makesyscalls.lua \
|
|
../../contrib/cloudabi/syscalls32.master ${.CURDIR}/syscalls.conf
|