~ubuntu-branches/debian/experimental/nfs-utils/experimental

« back to all changes in this revision

Viewing changes to utils/rquotad/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-07-08 14:26:40 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060708142640-r171kjj2a13gy2kz
Tags: 1:1.0.9-1
* Updated co-mantainer mail address.
* New upstream release.
  - Added 'mount.nfs' utility which can be used as a mount helper
    to mount nfs filesystems. It does not yet support 'user' mounts.
  - Makefile/autoconf tidyups
  - No compiles with no warnings
  - deleted debian/* at request of debian maintainer
  - deleted assorted other unused files
  - mountd can be run multi-threaded for configurations with many hundreds
    of clients (mountd -t 20).  Default is single-threaded
  - Support for selection NFS version to be exported, and protocol to
    use.  This requires kernel patches that should be in linux 2.6.19.
  - Use 65534 rather than -2 for default anon.  This makes no difference in many
    cases, but is important in some.
  - New utility 'rpcdebug' for controlled kernel 'debug' options for nfs and nfsd.
  - nfsstat reports NFSv4 operation statistics that should be available in
    linux 2.6.18.
  - assorted other fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
 
3
RPCGEN          = $(top_builddir)/tools/rpcgen/rpcgen
 
4
 
 
5
GENFILES_XDR    = rquota_xdr.c
 
6
GENFILES_H      = rquota.h
 
7
 
 
8
BUILT_SOURCES   = $(GENFILES_H)
 
9
 
 
10
GENFILES        = $(GENFILES_XDR) $(GENFILES_H)
3
11
man8_MANS       = rquotad.man
4
12
 
5
13
RPCPREFIX       = rpc.
9
17
EXTRA_DIST = rquota.x $(man8_MANS) NEW README.okir
10
18
 
11
19
rquotad_SOURCES = rquota_server.c rquota_svc.c rquota_xdr.c quotactl.c \
12
 
                  hasquota.c mntent.h pathnames.h rquota.h
 
20
                  hasquota.c mntent.h rquota.h
13
21
rquotad_LDADD = ../../support/export/libexport.a \
14
22
                ../../support/nfs/libnfs.a \
15
23
                ../../support/misc/libmisc.a \
19
27
 
20
28
MAINTAINERCLEANFILES = Makefile.in
21
29
 
 
30
 
 
31
$(RPCGEN):
 
32
        make -C $(top_srcdir)/tools/rpcgen all
 
33
 
 
34
$(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN)
 
35
        test -f $@ && rm -rf $@ || true
 
36
        $(RPCGEN) -c -o $@ $<
 
37
 
 
38
 
 
39
$(GENFILES_H): %.h: %.x $(RPCGEN)
 
40
        test -f $@ && rm -rf $@ || true
 
41
        $(RPCGEN) -h -o $@ $<
 
42
 
22
43
#######################################################################
23
44
# The following allows the current practice of having
24
45
# daemons renamed during the install to include RPCPREFIX