summaryrefslogtreecommitdiff
path: root/ufs/Makefile
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-04-26 20:09:04 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-04-26 20:09:04 +0000
commit3d3e9226d2a674801babedc7b439faeef8c68f1f (patch)
treee6fae8e3b9c62daeb9532b09ad2102d27dff0f77 /ufs/Makefile
parent39a70332f87c9b83c6c18a4a4d8c23b4aaad69e0 (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/Makefile13
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
+