diff options
author | Miles Bader <miles@gnu.org> | 1995-08-24 14:23:29 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-24 14:23:29 +0000 |
commit | 63610a948cb17878cde0dbef6a4da1bd3d884026 (patch) | |
tree | fb0c2bd1ff9a4e26dcacb7e9e75c68ae637fa268 /ufs/Makefile | |
parent | 56627e328e2b13ab7cb48c6e7a482126fbe68f7f (diff) |
(ufs): Add explicit dependencies.
(HURDLIBS, LDFLAGS, REMHDRS): Removed.
Rules associated with ../lib removed.
Diffstat (limited to 'ufs/Makefile')
-rw-r--r-- | ufs/Makefile | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/ufs/Makefile b/ufs/Makefile index 33582409..a7763efc 100644 --- a/ufs/Makefile +++ b/ufs/Makefile @@ -18,21 +18,13 @@ dir := ufs makemode := server +target = ufs 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) 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 -#HURDLIBS = libdiskfs libports libdiskfs libpager libioserver \ -# libfshelp libdiskfs libthreads libports -HURDLIBS = libdiskfs libports libpager libioserver libfshelp libthreads libihash -LDFLAGS = -Wl,--no-keep-memory -target = ufs -CPPFLAGS += -I../lib -CPPFLAGS += $(CPPFLAGS-$(notdir $<)) -vpath %.c ../lib +OBJS = $(SRCS:.c=.o) -include ../Makeconf +ufs: $(OBJS) ../libdiskfs/libdiskfs.a ../libports/libports.a ../libpager/libpager.a ../libioserver/libioserver.a ../libfshelp/libfshelp.a ../libthreads/libthreads.a ../libihash/libihash.a +include ../Makeconf |