source: rtems/cpukit/libfs/src/nfsclient/Makefile.am @ 0ec9bbc

5
Last change on this file since 0ec9bbc was 9e36910, checked in by Sebastian Huber <sebastian.huber@…>, on 04/09/18 at 04:37:39

NFS: Remove support for cexp

Avoid use of RTEMS_RELLDFLAGS.

Close #3390.

  • Property mode set to 100644
File size: 913 bytes
Line 
1include $(top_srcdir)/automake/compile.am
2
3if LIBNETWORKING
4project_lib_LIBRARIES = libnfs.a
5libnfs_a_SOURCES =
6libnfs_a_SOURCES += proto/mount_prot_xdr.c
7libnfs_a_SOURCES += proto/nfs_prot_xdr.c
8libnfs_a_SOURCES += src/nfs.c
9libnfs_a_SOURCES += src/rpcio.c
10libnfs_a_SOURCES += src/sock_mbuf.c
11libnfs_a_SOURCES += src/xdr_mbuf.c
12endif
13
14
15if RPCTOOLS
16$(srcdir)/proto/mount_prot.h: proto/mount_prot.x
17        (cd $(srcdir)/proto && $(RPCGEN) -h -C mount_prot.x > mount_prot.h)
18
19$(srcdir)/proto/mount_prot_xdr.c: proto/mount_prot.x proto/mount_prot.h
20        (cd $(srcdir)/proto && $(RPCGEN) -c -C mount_prot.x \
21        > mount_prot_xdr.c)
22
23$(srcdir)/proto/nfs_prot.h: proto/nfs_prot.x
24        (cd $(srcdir)/proto && $(RPCGEN) -h -C nfs_prot.x > nfs_prot.h)
25
26$(srcdir)/proto/nfs_prot_xdr.c: proto/nfs_prot.x proto/nfs_prot.h
27        (cd $(srcdir)/proto && $(RPCGEN) -c -C nfs_prot.x \
28        > nfs_prot_xdr.c)
29endif
30
31include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.