~ubuntu-branches/ubuntu/lucid/nfs-utils/lucid

« back to all changes in this revision

Viewing changes to support/export/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-07-03 10:36:59 UTC
  • mto: (12.1.1 feisty)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20060703103659-71qzs6f21zzmjmhx
Tags: upstream-1.0.8
ImportĀ upstreamĀ versionĀ 1.0.8

Show diffs side-by-side

added added

removed removed

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