Date: Fri, 16 Mar 2018 13:33:42 +0000 (UTC) From: Ed Maste <emaste@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r331054 - head/sys/modules/sgx Message-ID: <201803161333.w2GDXg14014108@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste Date: Fri Mar 16 13:33:42 2018 New Revision: 331054 URL: https://svnweb.freebsd.org/changeset/base/331054 Log: 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. Modified: head/sys/modules/sgx/Makefile Modified: head/sys/modules/sgx/Makefile ============================================================================== --- head/sys/modules/sgx/Makefile Fri Mar 16 12:12:41 2018 (r331053) +++ head/sys/modules/sgx/Makefile Fri Mar 16 13:33:42 2018 (r331054) @@ -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} \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803161333.w2GDXg14014108>