diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-26 20:09:04 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-26 20:09:04 +0000 |
commit | ddf69eef787d71e6b9a2bcce6642c92ccc4f5ca6 (patch) | |
tree | e2330f51a0e932218801779718bec5dee3593a9d /ufs/Makefile | |
parent | a6a9ba4bef0212b95d1de28b96e3b5c52c041a95 (diff) |
(makemode): Now `servers'.
(targets): Renamed from `target'; now include ufs.static.
(ufs.static-LDFLAGS): Renamed from `LDFLAGS'.
(ufs.static): Depend on same things as `ufs'.
(include ../Makeconf): Must come before dependency information.
Diffstat (limited to 'ufs/Makefile')
-rw-r--r-- | ufs/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/ufs/Makefile b/ufs/Makefile index a4601cce..280e155c 100644 --- a/ufs/Makefile +++ b/ufs/Makefile @@ -1,5 +1,5 @@ -# Copyright (C) 1994, 1995 Free Software Foundation +# Copyright (C) 1994, 1995, 1996 Free Software Foundation # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -16,17 +16,18 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. dir := ufs -makemode := server +makemode := servers -target = ufs +targets = ufs ufs.static 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 OBJS = $(SRCS:.c=.o) -LDFLAGS += -static - -ufs: $(OBJS) ../libdiskfs/libdiskfs.a ../libports/libports.a ../libpager/libpager.a ../libioserver/libioserver.a ../libfshelp/libfshelp.a ../libthreads/libthreads.a ../libihash/libihash.a ../libshouldbeinlibc/libshouldbeinlibc.a +ufs.static-LDFLAGS += -static include ../Makeconf + +ufs.static ufs: $(OBJS) ../libdiskfs/libdiskfs.a ../libports/libports.a ../libpager/libpager.a ../libioserver/libioserver.a ../libfshelp/libfshelp.a ../libthreads/libthreads.a ../libihash/libihash.a ../libshouldbeinlibc/libshouldbeinlibc.a + |