| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- CC=gcc
- CFLAGS=-g -O0 -Wall -W -I../..
- LIBS=
- LIBNFS_OBJ = libnfs-raw-mount.o libnfs-raw-portmap.o libnfs-raw-nfs.o libnfs-raw-nfsacl.o mount.o nfs.o nfsacl.o portmap.o pdu.o init.o socket.o libnfs.o libnfs-sync.o
- all: tools/nfsclient-raw tools/nfsclient-async tools/nfsclient-sync
- tools/nfsclient-async: tools/nfsclient-async.c libnfs.a
- $(CC) $(CFLAGS) -o $@ tools/nfsclient-async.c libnfs.a $(LIBS)
- tools/nfsclient-sync: tools/nfsclient-sync.c libnfs.a
- $(CC) $(CFLAGS) -o $@ tools/nfsclient-sync.c libnfs.a $(LIBS)
- tools/nfsclient-raw: tools/nfsclient-raw.c libnfs.a
- $(CC) $(CFLAGS) -o $@ tools/nfsclient-raw.c libnfs.a $(LIBS)
- libnfs.a: $(LIBNFS_OBJ)
- @echo Creating library $@
- ar r libnfs.a $(LIBNFS_OBJ)
- ranlib libnfs.a
- rpc/mount.h: rpc/mount.x
- @echo Generating $@
- rpcgen -h rpc/mount.x > $@
- libnfs-raw-mount.c: rpc/mount.x
- @echo Generating $@
- rpcgen -c rpc/mount.x > libnfs-raw-mount.c
- libnfs-raw-mount.o: libnfs-raw-mount.c rpc/mount.h
- @echo Compiling $@
- gcc -g -c libnfs-raw-mount.c -o $@
- rpc/nfs.h: rpc/nfs.x
- @echo Generating $@
- rpcgen -h rpc/nfs.x > $@
- libnfs-raw-nfs.c: rpc/nfs.x
- @echo Generating $@
- rpcgen -c rpc/nfs.x > $@
- libnfs-raw-nfs.o: libnfs-raw-nfs.c rpc/nfs.h
- @echo Compiling $@
- gcc -g -c libnfs-raw-nfs.c -o $@
- rpc/nfsacl.h: rpc/nfsacl.x
- @echo Generating $@
- rpcgen -h rpc/nfsacl.x > $@
- libnfs-raw-nfsacl.c: rpc/nfsacl.x
- @echo Generating $@
- rpcgen -c rpc/nfsacl.x > $@
- libnfs-raw-nfsacl.o: libnfs-raw-nfsacl.c rpc/nfsacl.h
- @echo Compiling $@
- gcc -g -c libnfs-raw-nfsacl.c -o $@
- rpc/portmap.h: rpc/portmap.x
- @echo Generating $@
- rpcgen -h rpc/portmap.x > $@
- libnfs-raw-portmap.c: rpc/portmap.x
- @echo Generating $@
- rpcgen -c rpc/portmap.x > $@
- libnfs-raw-portmap.o: libnfs-raw-portmap.c rpc/portmap.h
- @echo Compiling $@
- gcc -g -c libnfs-raw-portmap.c -o $@
- clean:
- rm -f *.o
- rm -f *.a
- rm -f rpc/mount.h libnfs-raw-mount.c
- rm -f rpc/nfs.h libnfs-raw-nfs.c
- rm -f rpc/nfsacl.h libnfs-raw-nfsacl.c
- rm -f rpc/portmap.h libnfs-raw-portmap.c
- rm -f tools/nfsclient-raw tools/nfsclient-async tools/nfsclient-sync
|