diff options
author | Roland McGrath <roland@gnu.org> | 1999-09-13 04:34:49 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-09-13 04:34:49 +0000 |
commit | a197e444896657467216d6f5f23c90c6fa9c03e9 (patch) | |
tree | 0a8c16ecc4c9bc6037262f96872fdca97fc1d0e8 | |
parent | 0dfa2c84c21ed47f380328861e893d2a9879426d (diff) |
1999-09-09 Roland McGrath <roland@baalperazim.frob.com>
* Makefile (makemode): servers -> server.
(targets): Replaced with target; remove ufs.static.
(ufs.static-LDFLAGS): Variable removed.
(ufs.static, ufs): Remove deps.
-rw-r--r-- | ufs/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/ufs/Makefile b/ufs/Makefile index 202316f8..c3bdc997 100644 --- a/ufs/Makefile +++ b/ufs/Makefile @@ -1,5 +1,5 @@ -# Copyright (C) 1994, 1995, 1996 Free Software Foundation +# Copyright (C) 1994,95,96,99 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -16,9 +16,9 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dir := ufs -makemode := servers +makemode := server -targets = ufs ufs.static +target = ufs SRCS = alloc.c consts.c dir.c hyper.c inode.c main.c pager.c \ sizes.c subr.c tables.c bmap.c pokeloc.c LCLHDRS = ufs.h fs.h dinode.h dir.h @@ -26,8 +26,4 @@ LCLHDRS = ufs.h fs.h dinode.h dir.h OBJS = $(SRCS:.c=.o) HURDLIBS = diskfs iohelp fshelp store pager ports threads ihash shouldbeinlibc -ufs.static-LDFLAGS += -static - include ../Makeconf - -ufs.static ufs: $(OBJS) $(library_deps) |