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

« back to all changes in this revision

Viewing changes to utils/rquotad/Makefile.in

  • 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:
140
140
K5VERS = @K5VERS@
141
141
KRBCFLAGS = @KRBCFLAGS@
142
142
KRBDIR = @KRBDIR@
 
143
KRBLDFLAGS = @KRBLDFLAGS@
143
144
KRBLIBS = @KRBLIBS@
144
145
LD = @LD@
145
146
LDFLAGS = @LDFLAGS@
227
228
statedir = @statedir@
228
229
sysconfdir = @sysconfdir@
229
230
target_alias = @target_alias@
 
231
RPCGEN = $(top_builddir)/tools/rpcgen/rpcgen
 
232
GENFILES_XDR = rquota_xdr.c
 
233
GENFILES_H = rquota.h
 
234
BUILT_SOURCES = $(GENFILES_H)
 
235
GENFILES = $(GENFILES_XDR) $(GENFILES_H)
230
236
man8_MANS = rquotad.man
231
237
RPCPREFIX = rpc.
232
238
KPREFIX = @kprefix@
233
239
EXTRA_DIST = rquota.x $(man8_MANS) NEW README.okir
234
240
rquotad_SOURCES = rquota_server.c rquota_svc.c rquota_xdr.c quotactl.c \
235
 
                  hasquota.c mntent.h pathnames.h rquota.h
 
241
                  hasquota.c mntent.h rquota.h
236
242
 
237
243
rquotad_LDADD = ../../support/export/libexport.a \
238
244
                ../../support/nfs/libnfs.a \
243
249
                   -I$(top_srcdir)/support/export
244
250
 
245
251
MAINTAINERCLEANFILES = Makefile.in
246
 
all: all-am
 
252
all: $(BUILT_SOURCES)
 
253
        $(MAKE) $(AM_MAKEFLAGS) all-am
247
254
 
248
255
.SUFFIXES:
249
256
.SUFFIXES: .c .lo .o .obj
542
549
          fi; \
543
550
        done
544
551
check-am: all-am
545
 
check: check-am
 
552
check: $(BUILT_SOURCES)
 
553
        $(MAKE) $(AM_MAKEFLAGS) check-am
546
554
all-am: Makefile $(PROGRAMS) $(MANS)
547
555
installdirs:
548
556
        for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)"; do \
549
557
          test -z "$$dir" || $(mkdir_p) "$$dir"; \
550
558
        done
551
 
install: install-am
 
559
install: $(BUILT_SOURCES)
 
560
        $(MAKE) $(AM_MAKEFLAGS) install-am
552
561
install-exec: install-exec-am
553
562
install-data: install-data-am
554
563
uninstall: uninstall-am
572
581
maintainer-clean-generic:
573
582
        @echo "This command is intended for maintainers to use"
574
583
        @echo "it deletes files that may require special tools to rebuild."
 
584
        -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
575
585
        -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
576
586
clean: clean-am
577
587
 
640
650
        uninstall-man uninstall-man8 uninstall-sbinPROGRAMS
641
651
 
642
652
 
 
653
$(RPCGEN):
 
654
        make -C $(top_srcdir)/tools/rpcgen all
 
655
 
 
656
$(GENFILES_XDR): %_xdr.c: %.x $(RPCGEN)
 
657
        test -f $@ && rm -rf $@ || true
 
658
        $(RPCGEN) -c -o $@ $<
 
659
 
 
660
$(GENFILES_H): %.h: %.x $(RPCGEN)
 
661
        test -f $@ && rm -rf $@ || true
 
662
        $(RPCGEN) -h -o $@ $<
 
663
 
643
664
#######################################################################
644
665
# The following allows the current practice of having
645
666
# daemons renamed during the install to include RPCPREFIX