utils/statd/statd
tools/locktest/testlk
tools/getiversion/getiversion
-tools/getkversion/getkversion
support/export/mount.h
support/export/mount_clnt.c
support/export/mount_xdr.c
support/nfs/Makefile
tools/Makefile
tools/getiversion/Makefile
- tools/getkversion/Makefile
tools/locktest/Makefile
tools/nlmtest/Makefile
tools/rpcdebug/Makefile
## Process this file with automake to produce Makefile.in
-SUBDIRS = getiversion getkversion locktest rpcdebug rpcgen nlmtest
+SUBDIRS = getiversion locktest rpcdebug rpcgen nlmtest
MAINTAINERCLEANFILES = Makefile.in
+++ /dev/null
-## Process this file with automake to produce Makefile.in
-
-CC=$(CC_FOR_BUILD)
-LIBTOOL = @LIBTOOL@ --tag=CC
-
-noinst_PROGRAMS = getkversion
-getkversion_SOURCES = getkversion.c
-getkversion_CFLAGS=$(CFLAGS_FOR_BUILD)
-getkversion_CPPFLAGS=$(CPPFLAGS_FOR_BUILD)
-getkversion_LDFLAGS=$(LDFLAGS_FOR_BUILD)
-
-MAINTAINERCLEANFILES = Makefile.in
+++ /dev/null
-/*
- * Get version number of the kernel this was compiled for.
- * This is NOT the same as calling uname(), because we may be
- * running on a different kernel.
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <linux/version.h>
-#include <stdio.h>
-
-int
-main(void) /* This is for Dan Popp ;) */
-{
- printf("%s\n", UTS_RELEASE);
- return 0;
-}