Move assym.s to DPSRC in sgx module

assym.s is only to be included by other .s files, and should not
actually be assembled by itself.
This commit is contained in:
Ed Maste 2018-03-16 13:33:42 +00:00
parent dd851c507b
commit 1d071ce340

View File

@ -3,8 +3,9 @@
.PATH: ${SRCTOP}/sys/amd64/sgx
KMOD= sgx
SRCS= sgx.c sgxvar.h assym.s sgx_support.S
SRCS= sgx.c sgxvar.h sgx_support.S
SRCS+= opt_compat.h opt_hwpmc_hooks.h opt_kstack_pages.h
DPSRCS= assym.s
sgx_support.o: assym.s
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \