diff options
author | Roland McGrath <roland@gnu.org> | 1999-09-13 04:35:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-09-13 04:35:00 +0000 |
commit | 1bb3d33fee708202322a4f17c66226f30878dd95 (patch) | |
tree | cf71649175cf7193858d375732b7efffe1b027cf /ext2fs/Makefile | |
parent | a197e444896657467216d6f5f23c90c6fa9c03e9 (diff) |
1999-09-09 Roland McGrath <roland@baalperazim.frob.com>
* Makefile (makemode): server -> servers.
(targets): Replaced with target; remove ext2fs.static.
(ext2fs.static-LDFLAGS): Variable removed.
(ext2fs, ext2fs.static): Remove deps.
Diffstat (limited to 'ext2fs/Makefile')
-rw-r--r-- | ext2fs/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/ext2fs/Makefile b/ext2fs/Makefile index 1f5f2e84..07bb3f95 100644 --- a/ext2fs/Makefile +++ b/ext2fs/Makefile @@ -1,6 +1,6 @@ # Makefile for ext2fs # -# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1999 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 @@ -17,18 +17,13 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dir := ext2fs -makemode := servers +makemode := server -targets = ext2fs ext2fs.static +target = ext2fs SRCS = balloc.c bitmap.c dir.c ext2fs.c getblk.c hyper.c ialloc.c \ inode.c pager.c pokel.c truncate.c storeinfo.c msg.c OBJS = $(SRCS:.c=.o) LCLHDRS = ext2fs.h ext2_fs.h ext2_fs_i.h HURDLIBS=diskfs pager iohelp fshelp store ports threads ihash shouldbeinlibc -ext2fs.static-LDFLAGS += -static - include ../Makeconf - -ext2fs ext2fs.static: $(OBJS) $(library_deps) - |