summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/nfsclient/Makefile.am
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-09-14 06:34:02 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-10-10 07:52:39 +0200
commitb45a85322a609d233d611baf5d7623c39f5e7c9e (patch)
treee200983442a87ac105b181e15151d5a45fa46771 /cpukit/libfs/src/nfsclient/Makefile.am
parentbuild: Merge libdrvmgr/Makefile.am (diff)
downloadrtems-b45a85322a609d233d611baf5d7623c39f5e7c9e.tar.bz2
build: Merge libfs/Makefile.am
Diffstat (limited to '')
-rw-r--r--cpukit/libfs/src/nfsclient/Makefile.am31
1 files changed, 0 insertions, 31 deletions
diff --git a/cpukit/libfs/src/nfsclient/Makefile.am b/cpukit/libfs/src/nfsclient/Makefile.am
deleted file mode 100644
index db539b95ba..0000000000
--- a/cpukit/libfs/src/nfsclient/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-include $(top_srcdir)/automake/compile.am
-
-if LIBNETWORKING
-project_lib_LIBRARIES = libnfs.a
-libnfs_a_SOURCES =
-libnfs_a_SOURCES += proto/mount_prot_xdr.c
-libnfs_a_SOURCES += proto/nfs_prot_xdr.c
-libnfs_a_SOURCES += src/nfs.c
-libnfs_a_SOURCES += src/rpcio.c
-libnfs_a_SOURCES += src/sock_mbuf.c
-libnfs_a_SOURCES += src/xdr_mbuf.c
-endif
-
-
-if RPCTOOLS
-$(srcdir)/proto/mount_prot.h: proto/mount_prot.x
- (cd $(srcdir)/proto && $(RPCGEN) -h -C mount_prot.x > mount_prot.h)
-
-$(srcdir)/proto/mount_prot_xdr.c: proto/mount_prot.x proto/mount_prot.h
- (cd $(srcdir)/proto && $(RPCGEN) -c -C mount_prot.x \
- > mount_prot_xdr.c)
-
-$(srcdir)/proto/nfs_prot.h: proto/nfs_prot.x
- (cd $(srcdir)/proto && $(RPCGEN) -h -C nfs_prot.x > nfs_prot.h)
-
-$(srcdir)/proto/nfs_prot_xdr.c: proto/nfs_prot.x proto/nfs_prot.h
- (cd $(srcdir)/proto && $(RPCGEN) -c -C nfs_prot.x \
- > nfs_prot_xdr.c)
-endif
-
-include $(top_srcdir)/automake/local.am