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

« back to all changes in this revision

Viewing changes to tools/rpcdebug/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:
36
36
POST_UNINSTALL = :
37
37
build_triplet = @build@
38
38
host_triplet = @host@
39
 
noinst_PROGRAMS = rpcdebug$(EXEEXT)
 
39
sbin_PROGRAMS = rpcdebug$(EXEEXT)
40
40
subdir = tools/rpcdebug
41
41
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
42
42
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
50
50
mkinstalldirs = $(install_sh) -d
51
51
CONFIG_HEADER = $(top_builddir)/support/include/config.h
52
52
CONFIG_CLEAN_FILES =
53
 
PROGRAMS = $(noinst_PROGRAMS)
 
53
am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)"
 
54
sbinPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
 
55
PROGRAMS = $(sbin_PROGRAMS)
54
56
am_rpcdebug_OBJECTS = rpcdebug-rpcdebug.$(OBJEXT)
55
57
rpcdebug_OBJECTS = $(am_rpcdebug_OBJECTS)
56
58
rpcdebug_LDADD = $(LDADD)
67
69
        $(AM_LDFLAGS) $(LDFLAGS) -o $@
68
70
SOURCES = $(rpcdebug_SOURCES)
69
71
DIST_SOURCES = $(rpcdebug_SOURCES)
 
72
man8dir = $(mandir)/man8
 
73
NROFF = nroff
 
74
MANS = $(man8_MANS)
70
75
ETAGS = etags
71
76
CTAGS = ctags
72
77
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
129
134
K5VERS = @K5VERS@
130
135
KRBCFLAGS = @KRBCFLAGS@
131
136
KRBDIR = @KRBDIR@
 
137
KRBLDFLAGS = @KRBLDFLAGS@
132
138
KRBLIBS = @KRBLIBS@
133
139
LD = @LD@
134
140
LDFLAGS = @LDFLAGS@
216
222
statedir = @statedir@
217
223
sysconfdir = @sysconfdir@
218
224
target_alias = @target_alias@
219
 
EXTRA_DIST = neat_idea.c
 
225
man8_MANS = rpcdebug.man
 
226
EXTRA_DIST = $(man8_MANS)
220
227
rpcdebug_SOURCES = rpcdebug.c
221
228
rpcdebug_CFLAGS = $(CFLAGS_FOR_BUILD)
222
229
rpcdebug_CPPFLAGS = $(CPPFLAGS_FOR_BUILD) -I$(top_srcdir)/support/include
255
262
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
256
263
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
257
264
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
258
 
 
259
 
clean-noinstPROGRAMS:
260
 
        @list='$(noinst_PROGRAMS)'; for p in $$list; do \
 
265
install-sbinPROGRAMS: $(sbin_PROGRAMS)
 
266
        @$(NORMAL_INSTALL)
 
267
        test -z "$(sbindir)" || $(mkdir_p) "$(DESTDIR)$(sbindir)"
 
268
        @list='$(sbin_PROGRAMS)'; for p in $$list; do \
 
269
          p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
 
270
          if test -f $$p \
 
271
             || test -f $$p1 \
 
272
          ; then \
 
273
            f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
 
274
           echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
 
275
           $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \
 
276
          else :; fi; \
 
277
        done
 
278
 
 
279
uninstall-sbinPROGRAMS:
 
280
        @$(NORMAL_UNINSTALL)
 
281
        @list='$(sbin_PROGRAMS)'; for p in $$list; do \
 
282
          f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
 
283
          echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
 
284
          rm -f "$(DESTDIR)$(sbindir)/$$f"; \
 
285
        done
 
286
 
 
287
clean-sbinPROGRAMS:
 
288
        @list='$(sbin_PROGRAMS)'; for p in $$list; do \
261
289
          f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
262
290
          echo " rm -f $$p $$f"; \
263
291
          rm -f $$p $$f ; \
318
346
distclean-libtool:
319
347
        -rm -f libtool
320
348
uninstall-info-am:
 
349
install-man8: $(man8_MANS) $(man_MANS)
 
350
        @$(NORMAL_INSTALL)
 
351
        test -z "$(man8dir)" || $(mkdir_p) "$(DESTDIR)$(man8dir)"
 
352
        @list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
 
353
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
354
        for i in $$l2; do \
 
355
          case "$$i" in \
 
356
            *.8*) list="$$list $$i" ;; \
 
357
          esac; \
 
358
        done; \
 
359
        for i in $$list; do \
 
360
          if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
 
361
          else file=$$i; fi; \
 
362
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
363
          case "$$ext" in \
 
364
            8*) ;; \
 
365
            *) ext='8' ;; \
 
366
          esac; \
 
367
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
368
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
369
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
370
          echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
 
371
          $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst"; \
 
372
        done
 
373
uninstall-man8:
 
374
        @$(NORMAL_UNINSTALL)
 
375
        @list='$(man8_MANS) $(dist_man8_MANS) $(nodist_man8_MANS)'; \
 
376
        l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
 
377
        for i in $$l2; do \
 
378
          case "$$i" in \
 
379
            *.8*) list="$$list $$i" ;; \
 
380
          esac; \
 
381
        done; \
 
382
        for i in $$list; do \
 
383
          ext=`echo $$i | sed -e 's/^.*\\.//'`; \
 
384
          case "$$ext" in \
 
385
            8*) ;; \
 
386
            *) ext='8' ;; \
 
387
          esac; \
 
388
          inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
 
389
          inst=`echo $$inst | sed -e 's/^.*\///'`; \
 
390
          inst=`echo $$inst | sed '$(transform)'`.$$ext; \
 
391
          echo " rm -f '$(DESTDIR)$(man8dir)/$$inst'"; \
 
392
          rm -f "$(DESTDIR)$(man8dir)/$$inst"; \
 
393
        done
321
394
 
322
395
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
323
396
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
396
469
        done
397
470
check-am: all-am
398
471
check: check-am
399
 
all-am: Makefile $(PROGRAMS)
 
472
all-am: Makefile $(PROGRAMS) $(MANS)
400
473
installdirs:
 
474
        for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)"; do \
 
475
          test -z "$$dir" || $(mkdir_p) "$$dir"; \
 
476
        done
401
477
install: install-am
402
478
install-exec: install-exec-am
403
479
install-data: install-data-am
425
501
        -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
426
502
clean: clean-am
427
503
 
428
 
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
 
504
clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
429
505
        mostlyclean-am
430
506
 
431
507
distclean: distclean-am
444
520
 
445
521
info-am:
446
522
 
447
 
install-data-am:
 
523
install-data-am: install-man
448
524
 
449
 
install-exec-am:
 
525
install-exec-am: install-sbinPROGRAMS
450
526
 
451
527
install-info: install-info-am
452
528
 
453
 
install-man:
 
529
install-man: install-man8
454
530
 
455
531
installcheck-am:
456
532
 
472
548
 
473
549
ps-am:
474
550
 
475
 
uninstall-am: uninstall-info-am
 
551
uninstall-am: uninstall-info-am uninstall-man uninstall-sbinPROGRAMS
 
552
 
 
553
uninstall-man: uninstall-man8
476
554
 
477
555
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
478
 
        clean-libtool clean-noinstPROGRAMS ctags distclean \
 
556
        clean-libtool clean-sbinPROGRAMS ctags distclean \
479
557
        distclean-compile distclean-generic distclean-libtool \
480
558
        distclean-tags distdir dvi dvi-am html html-am info info-am \
481
559
        install install-am install-data install-data-am install-exec \
482
560
        install-exec-am install-info install-info-am install-man \
483
 
        install-strip installcheck installcheck-am installdirs \
484
 
        maintainer-clean maintainer-clean-generic mostlyclean \
485
 
        mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
486
 
        pdf pdf-am ps ps-am tags uninstall uninstall-am \
487
 
        uninstall-info-am
 
561
        install-man8 install-sbinPROGRAMS install-strip installcheck \
 
562
        installcheck-am installdirs maintainer-clean \
 
563
        maintainer-clean-generic mostlyclean mostlyclean-compile \
 
564
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
 
565
        tags uninstall uninstall-am uninstall-info-am uninstall-man \
 
566
        uninstall-man8 uninstall-sbinPROGRAMS
488
567
 
489
568
# Tell versions [3.59,3.63) of GNU make to not export all variables.
490
569
# Otherwise a system limit (for SysV at least) may be exceeded.