Move assym.s to DPSRCS in linux modules

assym.s exists only to be included by other .s files, and should not
actually be assembled by itself.

Sponsored by:	Turing Robotic Industries Inc.
This commit is contained in:
Ed Maste 2018-02-05 14:53:18 +00:00
parent f86f5cd406
commit 85059bc4ad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328883
2 changed files with 4 additions and 4 deletions

View File

@ -17,9 +17,9 @@ SRCS= linux_fork.c linux${SFX}_dummy.c linux_file.c linux_event.c \
linux${SFX}_sysvec.c linux_uid16.c linux_time.c \
linux_timer.c linux_vdso.c \
opt_inet6.h opt_compat.h opt_posix.h opt_usb.h vnode_if.h \
device_if.h bus_if.h assym.s \
device_if.h bus_if.h \
linux${SFX}_support.s
DPSRCS= linux${SFX}_genassym.c
DPSRCS= assym.s linux${SFX}_genassym.c
# XXX: for assym.s
SRCS+= opt_kstack_pages.h opt_nfs.h opt_compat.h opt_hwpmc_hooks.h

View File

@ -11,9 +11,9 @@ SRCS= linux_fork.c linux_dummy.c linux_file.c linux_event.c \
linux_socket.c linux_stats.c linux_sysctl.c linux_sysent.c \
linux_sysvec.c linux_time.c linux_vdso.c linux_timer.c \
opt_inet6.h opt_compat.h opt_posix.h opt_usb.h \
vnode_if.h device_if.h bus_if.h assym.s \
vnode_if.h device_if.h bus_if.h \
linux_support.s
DPSRCS= linux_genassym.c
DPSRCS= assym.s linux_genassym.c
# XXX: for assym.s
SRCS+= opt_kstack_pages.h opt_nfs.h opt_hwpmc_hooks.h