60027726b9
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
21 lines
476 B
Makefile
21 lines
476 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 3/21/94
|
|
# $FreeBSD$
|
|
#
|
|
# Makefile for init_sysent
|
|
|
|
# Don't use an OBJDIR
|
|
.OBJDIR: ${.CURDIR}
|
|
|
|
.include <src.lua.mk>
|
|
|
|
all:
|
|
@echo "make sysent only"
|
|
|
|
sysent: init_sysent.c syscalls.c ../sys/syscall.h ../sys/syscall.mk \
|
|
../sys/sysproto.h
|
|
|
|
init_sysent.c syscalls.c systrace_args.c ../sys/syscall.h \
|
|
../sys/syscall.mk ../sys/sysproto.h: ../tools/makesyscalls.lua syscalls.master \
|
|
capabilities.conf
|
|
${LUA} ../tools/makesyscalls.lua syscalls.master
|