blob: 1243305eab62d4f38038a0ba54ff52bb54d08f15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# libexport.a
# Miscellaneous utility functions related to exporting and mounting
# of NFS volumes.
#
LIBNAME = libexport.a
SRCS = $(RPCSRCS) client.c export.c hostname.c nfsctl.c rmtab.c \
xtab.c
OBJS = $(SRCS:.c=.o)
RPCSRCS = mount_clnt.c mount_xdr.c
RPCHDRS = mount.h
include $(TOP)rules.mk
$(RPCHDRS) $(RPCSRCS): mount.x
$(RM) $(RPCHDRS) $(RPCSRCS)
$(RPCGEN) -h -o mount.h $<
$(RPCGEN) -l -o mount_clnt.c $<
$(RPCGEN) -c -o mount_xdr.c $<
clean distclean::
$(RM) $(RPCHDRS) $(RPCSRCS)
install::
@:
|