Changeset 9e36910 in rtems
- Timestamp:
- 04/09/18 04:37:39 (6 years ago)
- Branches:
- 5, master
- Children:
- f0bcae38
- Parents:
- af6168c6
- git-author:
- Sebastian Huber <sebastian.huber@…> (04/09/18 04:37:39)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (04/12/18 05:08:53)
- Location:
- cpukit/libfs/src/nfsclient
- Files:
-
- 5 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libfs/src/nfsclient/Makefile.am
raf6168c6 r9e36910 1 1 include $(top_srcdir)/automake/compile.am 2 3 #%dirutils.obj: %dirutils.o4 # $(LD) -r -o $@ $^5 project_lib_PROGRAMS = dirutils.rel6 dirutils_rel_SOURCES = src/dirutils.c7 dirutils_rel_CPPFLAGS = $(AM_CPPFLAGS)8 dirutils_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)9 2 10 3 if LIBNETWORKING 11 4 project_lib_LIBRARIES = libnfs.a 12 13 $(PROJECT_LIB)/libnfs.a: libnfs.a 14 $(INSTALL_DATA) $< $(PROJECT_LIB)/libnfs.a 15 TMPINSTALL_FILES = $(PROJECT_LIB)/libnfs.a 16 17 18 # if you have CEXP set this variable to 'YES' 19 # and some "help" info will be compiled in. 20 libnfs_a_SOURCES = src/rpcio.c src/rpcio.h 21 libnfs_a_SOURCES += src/nfs.c src/sock_mbuf.c src/xdr_mbuf.c 22 libnfs_a_SOURCES += proto/mount_prot.h proto/nfs_prot.h 23 24 # With CEXP 25 # libnfs_a_SOURCES += dirutils.c rpcio.modini.c nfs.modini.c cexphelp.c 26 27 # PGMS=${ARCH}/nfs.obj ${ARCH}/rpcio.obj ${ARCH}/dirutils.obj 28 29 libnfs_a_CPPFLAGS = $(AM_CPPFLAGS) 30 libnfs_a_CPPFLAGS += -I$(srcdir)/proto 31 libnfs_a_CPPFLAGS += -UHAVE_CEXP 32 33 #%nfs.obj: %nfs.o %nfs.modini.o 34 # $(LD) -r -o $@ $^ -L../proto/$(ARCH) -lnfsprot 35 project_lib_PROGRAMS += nfs.rel 36 nfs_rel_SOURCES = src/nfs.c proto/nfs_prot.h proto/mount_prot.h 37 nfs_rel_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/proto 38 nfs_rel_LDFLAGS = $(RTEMS_RELLDFLAGS) 39 nfs_rel_LDADD = libnfs.a 40 41 #%rpcio.obj: %rpcio.o %sock_mbuf.o %xdr_mbuf.o %rpcio.modini.o 42 # $(LD) -r -o $@ $^ 43 project_lib_PROGRAMS += rpcio.rel 44 rpcio_rel_SOURCES = src/rpcio.c src/sock_mbuf.c src/xdr_mbuf.c 45 rpcio_rel_CPPFLAGS = $(AM_CPPFLAGS) 46 rpcio_rel_LDFLAGS = $(RTEMS_RELLDFLAGS) 47 48 libnfs_a_SOURCES += proto/nfs_prot_xdr.c proto/nfs_prot.h 49 libnfs_a_SOURCES += proto/mount_prot_xdr.c proto/mount_prot.h 50 51 libnfs_a_CPPFLAGS += -I$(srcdir)/proto 52 libnfs_a_CPPFLAGS += -UHAVE_CEXP 5 libnfs_a_SOURCES = 6 libnfs_a_SOURCES += proto/mount_prot_xdr.c 7 libnfs_a_SOURCES += proto/nfs_prot_xdr.c 8 libnfs_a_SOURCES += src/nfs.c 9 libnfs_a_SOURCES += src/rpcio.c 10 libnfs_a_SOURCES += src/sock_mbuf.c 11 libnfs_a_SOURCES += src/xdr_mbuf.c 53 12 endif 54 13 -
cpukit/libfs/src/nfsclient/src/nfs.c
raf6168c6 r9e36910 81 81 #include <arpa/inet.h> 82 82 83 #include <nfs_prot.h>84 #include <mount_prot.h>83 #include "../proto/nfs_prot.h" 84 #include "../proto/mount_prot.h" 85 85 86 86 #include "rpcio.h"
Note: See TracChangeset
for help on using the changeset viewer.