mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
Reviewed by: gonzo, landonf, br Differential Revision: https://reviews.freebsd.org/D13856
13 lines
287 B
Makefile
13 lines
287 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/amd64/sgx
|
|
|
|
KMOD= sgx
|
|
SRCS= sgx.c sgxvar.h assym.s sgx_support.S
|
|
SRCS+= opt_compat.h opt_hwpmc_hooks.h opt_kstack_pages.h
|
|
|
|
sgx_support.o: assym.s
|
|
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
|
|
${.IMPSRC} -o ${.TARGET}
|
|
|
|
.include <bsd.kmod.mk>
|