diff options
author | Miles Bader <miles@gnu.org> | 1996-03-05 23:00:13 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-03-05 23:00:13 +0000 |
commit | 248b92ac14ce51bf605707052a4a97b9d3b1c8eb (patch) | |
tree | e127eb191aa8d26e725317c04c5b0dd366698eaf /ufs-utils | |
parent | 98ca044ed2742b79d77b4cb5cd22824d9189b360 (diff) |
Update to new location.
Diffstat (limited to 'ufs-utils')
-rw-r--r-- | ufs-utils/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/ufs-utils/Makefile b/ufs-utils/Makefile index d7a16396..b22aa382 100644 --- a/ufs-utils/Makefile +++ b/ufs-utils/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 1994 Free Software Foundation +# Copyright (C) 1994, 1996 Free Software Foundation # Written by Michael I. Bushnell. # # This file is part of the GNU Hurd. @@ -18,13 +18,17 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -dir := newfs -makemode := utility +dir := ufs-utils +makemode := utilities -SRCS = mkfs.c # newfs.c -OBJS = mkfs.o # newfs.o -target = mkfs.ufs +targets = mkfs.ufs clri.ufs stati.ufs +target-suffix = .ufs +SRCS = mkfs.c clri.c stati.c installationdir = $(sbindir) +OBJS = $(SRCS:.c=.o) + +all: $(targets) + include ../Makeconf |