2017-11-01 15:07:57 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2005-04-16 15:20:36 -07:00
|
|
|
#
|
|
|
|
|
# Makefile for the linux lock manager stuff
|
|
|
|
|
#
|
|
|
|
|
|
2023-03-03 07:16:03 -05:00
|
|
|
ccflags-y += -I$(src) # needed for trace events
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
obj-$(CONFIG_LOCKD) += lockd.o
|
|
|
|
|
|
2024-05-08 18:19:38 +03:00
|
|
|
lockd-y := clntlock.o clntproc.o clntxdr.o host.o svc.o svclock.o \
|
2025-01-08 16:00:15 -05:00
|
|
|
svcshare.o svcproc.o svcsubs.o mon.o trace.o xdr.o netlink.o
|
2026-02-17 17:07:21 -05:00
|
|
|
lockd-$(CONFIG_LOCKD_V4) += clnt4xdr.o svc4proc.o nlm4xdr_gen.o
|
2024-05-08 18:19:38 +03:00
|
|
|
lockd-$(CONFIG_PROC_FS) += procfs.o
|
2026-02-17 17:06:53 -05:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# XDR code generation (requires Python and additional packages)
|
|
|
|
|
#
|
|
|
|
|
# The generated *xdr_gen.{h,c} files are checked into git. Normal kernel
|
|
|
|
|
# builds do not require the xdrgen tool or its Python dependencies.
|
|
|
|
|
#
|
|
|
|
|
# Developers modifying .x files in Documentation/sunrpc/xdr/ should run
|
|
|
|
|
# "make xdrgen" to regenerate the affected files.
|
|
|
|
|
#
|
|
|
|
|
.PHONY: xdrgen
|
|
|
|
|
|
|
|
|
|
XDRGEN = ../../tools/net/sunrpc/xdrgen/xdrgen
|
|
|
|
|
|
|
|
|
|
XDRGEN_DEFINITIONS = ../../include/linux/sunrpc/xdrgen/nlm4.h
|
|
|
|
|
XDRGEN_DECLARATIONS = nlm4xdr_gen.h
|
|
|
|
|
XDRGEN_SOURCE = nlm4xdr_gen.c
|
|
|
|
|
|
|
|
|
|
xdrgen: $(XDRGEN_DEFINITIONS) $(XDRGEN_DECLARATIONS) $(XDRGEN_SOURCE)
|
|
|
|
|
|
|
|
|
|
../../include/linux/sunrpc/xdrgen/nlm4.h: ../../Documentation/sunrpc/xdr/nlm4.x
|
|
|
|
|
$(XDRGEN) definitions $< > $@
|
|
|
|
|
|
|
|
|
|
nlm4xdr_gen.h: ../../Documentation/sunrpc/xdr/nlm4.x
|
|
|
|
|
$(XDRGEN) declarations $< > $@
|
|
|
|
|
|
|
|
|
|
nlm4xdr_gen.c: ../../Documentation/sunrpc/xdr/nlm4.x
|
|
|
|
|
$(XDRGEN) source --peer server $< > $@
|