summaryrefslogtreecommitdiffstats
path: root/tools/nlmtest/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/nlmtest/Makefile')
-rw-r--r--tools/nlmtest/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/nlmtest/Makefile b/tools/nlmtest/Makefile
new file mode 100644
index 0000000..6f29afb
--- /dev/null
+++ b/tools/nlmtest/Makefile
@@ -0,0 +1,26 @@
+#
+# nlmtest Exercise some NLM calls to test the lockd server.
+#
+
+TOOL = nlmtest
+SRCS = $(RPCSRCS) nlmtest.c
+OBJS = $(SRCS:.c=.o)
+
+RPCSRCS = nlm_prot_clnt.c nlm_prot_xdr.c
+RPCHDRS = nlm_prot.h
+
+#LIBS = -lnfs
+
+include $(TOP)rules.mk
+
+install::
+ @:
+
+$(RPCHDRS) $(RPCSRCS): nlm_prot.x
+ $(RM) $(RPCHDRS) $(RPCSRCS)
+ $(RPCGEN) -h -o nlm_prot.h $<
+ $(RPCGEN) -l -o nlm_prot_clnt.c $<
+ $(RPCGEN) -c -o nlm_prot_xdr.c $<
+
+clean distclean::
+ $(RM) $(RPCHDRS) $(RPCSRCS)