mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
e5d85ec52b
*-objs suffix is reserved rather for (user-space) host programs while usually *-y suffix is used for kernel drivers (although *-objs works for that purpose for now). Let's correct the old usages of *-objs in Makefiles. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Benjamin Coddington <bcodding@redhat.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
13 lines
383 B
Makefile
13 lines
383 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux lock manager stuff
|
|
#
|
|
|
|
ccflags-y += -I$(src) # needed for trace events
|
|
|
|
obj-$(CONFIG_LOCKD) += lockd.o
|
|
|
|
lockd-y := clntlock.o clntproc.o clntxdr.o host.o svc.o svclock.o \
|
|
svcshare.o svcproc.o svcsubs.o mon.o trace.o xdr.o
|
|
lockd-$(CONFIG_LOCKD_V4) += clnt4xdr.o xdr4.o svc4proc.o
|
|
lockd-$(CONFIG_PROC_FS) += procfs.o
|