mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Sponsored by: Netflix (cherry picked from commit 36ef238cb604c827c696e975281f63d90641005f)
16 lines
285 B
Makefile
16 lines
285 B
Makefile
.include <bsd.init.mk>
|
|
|
|
LIB= kboot
|
|
WARNS?= 4
|
|
|
|
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
|
|
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/arch/${MACHINE_ARCH}
|
|
|
|
SRCS= crt1.c \
|
|
host_syscall.S \
|
|
host_syscalls.c \
|
|
termios.c
|
|
|
|
.sinclude "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"
|
|
|
|
.include <bsd.lib.mk>
|