diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-19 18:59:34 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-19 18:59:34 +0000 |
commit | 80c937736e978a94dd3193fa2af9b2c0b2ad9c04 (patch) | |
tree | f90060caf10f2f4fa3e828a7bb0297c6e9cd167f /nfs/Makefile | |
parent | 3bd51e2e4bbbe978424d1d4492a54d56cee22bca (diff) |
*** empty log message ***
Diffstat (limited to 'nfs/Makefile')
-rw-r--r-- | nfs/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/nfs/Makefile b/nfs/Makefile index 2cf0c117..047bbd9f 100644 --- a/nfs/Makefile +++ b/nfs/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 1995 Free Software Foundation +# Copyright (C) 1995, 1996 Free Software Foundation # Written by Michael I. Bushnell. # # This file is part of the GNU Hurd. @@ -19,9 +19,13 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dir := nfs -makemode := misc +makemode := server -LCLHDRS = mountv1.h nfs.h nfsv2.h rpc.h rpcv2.h -SRCS = ops.c rpc.c +target = nfs +LCLHDRS = nfs.h rpc.h +SRCS = ops.c rpc.c mount.c cred.c nfs.c cache.c consts.c main.c +OBJS = $(subst .c,.o,$(SRCS)) + +nfs: $(OBJS) ../libports/libports.a ../libnetfs/libnetfs.a ../libfshelp/libfshelp.a ../libthreads/libthreads.a include ../Makeconf |