diff options
author | Roland McGrath <roland@gnu.org> | 2001-12-29 00:40:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-12-29 00:40:09 +0000 |
commit | 5d9efe088f5d83921305ee2f93f6c6590c640b47 (patch) | |
tree | 4db1eaac333cdb1147d083a87c8c9e9a8eb184b9 /nfs/Makefile | |
parent | 8b73f5b1b2ca8deb9839ac003bf7ef5f0fc8ce75 (diff) |
2001-10-13 Roland McGrath <roland@frob.com>
* storage-info.c: New file.
* Makefile (SRCS): Add it.
* mount.c (mounted_hostname, mounted_nfs_port): New global variables.
(mount_root): Set them.
* nfs.h: Declare them.
Diffstat (limited to 'nfs/Makefile')
-rw-r--r-- | nfs/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/nfs/Makefile b/nfs/Makefile index 12ce9800..9c3f2b7a 100644 --- a/nfs/Makefile +++ b/nfs/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation +# +# Copyright (C) 1995,96,97,2000,01 Free Software Foundation, Inc. # Written by Michael I. Bushnell. # # This file is part of the GNU Hurd. @@ -23,8 +23,9 @@ makemode := server target = nfs LCLHDRS = nfs.h mount.h nfs-spec.h -SRCS = ops.c rpc.c mount.c nfs.c cache.c consts.c main.c name-cache.c -OBJS = $(subst .c,.o,$(SRCS)) +SRCS = ops.c rpc.c mount.c nfs.c cache.c consts.c main.c name-cache.c \ + storage-info.c +OBJS = $(SRCS:.c=.o) HURDLIBS = netfs fshelp iohelp threads ports include ../Makeconf |