diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-02-14 22:57:09 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-02-14 22:57:09 +0000 |
commit | b4b43fec2f277ef5d9312ff4fcba3ca1f26df41f (patch) | |
tree | 8576f2f3dc988f5fe5f7c2f22c5b44b13cf22fa7 | |
parent | 50cefe1c1ec69dee59590f666c0e34d7cbbe505c (diff) |
Formerly Makefile.~4~
-rw-r--r-- | ufs/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ufs/Makefile b/ufs/Makefile index 90e567b2..3e235668 100644 --- a/ufs/Makefile +++ b/ufs/Makefile @@ -20,15 +20,16 @@ dir := ufs include ../Makeconf SRCS=alloc.c consts.c devio.c dir.c hyper.c inode.c main.c pager.c \ - subr.c tables.c + sizes.c subr.c tables.c -DISTFILES=$(SRCS) ufs.h Makefile +DISTFILES=$(SRCS) ufs.h Makefile fs.h dinode.h dir.h OBJS=$(subst .c,.o,$(SRCS)) exec_server_image.o +PRELIBS = $(libdiskfs) $(libports) LIBS= $(libdiskfs) $(libpager) $(libioserver) $(libports) $(libfshelp) \ $(libthreads) -EXTRALIBS=$(libdiskfs) +POSTLIBS=$(libdiskfs) all: ufs @@ -48,6 +49,7 @@ hyper.o: fs.h inode.o: dinode.h fs.h main.o: fs.h pager.o: fs.h dinode.h +sizes.o: fs.h dinode.h subr.o: fs.h tables.o: fs.h |