mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
13 lines
274 B
Makefile
13 lines
274 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/amd64/sgx
|
|
|
|
KMOD= sgx
|
|
SRCS= sgx.c sgxvar.h sgx_support.S
|
|
SRCS+= opt_hwpmc_hooks.h opt_kstack_pages.h
|
|
DPSRCS= assym.inc
|
|
|
|
sgx_support.o: assym.inc
|
|
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
|
|
${.IMPSRC} -o ${.TARGET}
|
|
|
|
.include <bsd.kmod.mk>
|