Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Mar 2018 14:50:20 +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: r331096 - head/sys/modules/hyperv/vmbus
Message-ID:  <201803171450.w2HEoKXK083688@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Sat Mar 17 14:50:20 2018
New Revision: 331096
URL: https://svnweb.freebsd.org/changeset/base/331096

Log:
  Move assym.s to DPSRCS in vmbus module
  
  assym.s is only to be included by other .s files, and should not
  actually be assembled by itself.

Modified:
  head/sys/modules/hyperv/vmbus/Makefile

Modified: head/sys/modules/hyperv/vmbus/Makefile
==============================================================================
--- head/sys/modules/hyperv/vmbus/Makefile	Sat Mar 17 12:59:55 2018	(r331095)
+++ head/sys/modules/hyperv/vmbus/Makefile	Sat Mar 17 14:50:20 2018	(r331096)
@@ -13,6 +13,7 @@ SRCS=	hyperv.c \
 	vmbus_et.c \
 	vmbus_if.c \
 	vmbus_res.c \
+	vmbus_vector.S \
 	vmbus_xact.c
 SRCS+=	acpi_if.h bus_if.h device_if.h opt_acpi.h pci_if.h pcib_if.h vmbus_if.h
 
@@ -22,8 +23,7 @@ SRCS+=  opt_kstack_pages.h opt_nfs.h opt_hwpmc_hooks.h
 SRCS+=	opt_apic.h
 .endif
 
-SRCS+=	assym.s \
-	vmbus_vector.S
+DPSRCS+=	assym.s
 
 vmbus_vector.o:
 	${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?201803171450.w2HEoKXK083688>