mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
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>
|