diff options
author | Roland McGrath <roland@gnu.org> | 1995-01-28 19:59:24 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-01-28 19:59:24 +0000 |
commit | 995580df9657a4dab11b627f96e3a43050713a21 (patch) | |
tree | 563e5f4ad3e71548e3103907c95bb1da737f5c81 | |
parent | b18fa003356b51407e66855484f7f6315780e681 (diff) |
(OBJS): Remove reference to libc's devstream.o.
-rw-r--r-- | ufs/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ufs/Makefile b/ufs/Makefile index 59965946..7ad7cb65 100644 --- a/ufs/Makefile +++ b/ufs/Makefile @@ -1,5 +1,5 @@ -# Copyright (C) 1994 Free Software Foundation +# Copyright (C) 1994, 1995 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 @@ -18,9 +18,9 @@ dir := ufs makemode := server -SRCS=alloc.c consts.c devio.c dir.c hyper.c inode.c main.c pager.c \ - sizes.c subr.c tables.c bmap.c pokeloc.c -OBJS=$(subst .c,.o,$(SRCS)) exec_server_image.o /gd3/gnu/libc/i386/devstream.o +SRCS = alloc.c consts.c devio.c dir.c hyper.c inode.c main.c pager.c \ + sizes.c subr.c tables.c bmap.c pokeloc.c +OBJS = $(SRCS:.c=.o) exec_server_image.o LCLHDRS = ufs.h fs.h dinode.h dir.h REMHDRS = ../hurd/diskfs.h ../hurd/ports.h ../hurd/pager.h\ ../hurd/ioserver.h ../hurd/fshelp.h |