diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-09-17 16:43:48 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-09-17 16:43:48 +0000 |
commit | dcf8f5b059e9ae3f767dc4069859dceba756328a (patch) | |
tree | 0079e8ac765fb551a9778ede1643145a954992a4 /ext2fs | |
parent | 88f8b13a55f5dac05830f486d0403b11b107c975 (diff) |
*** empty log message ***
Diffstat (limited to 'ext2fs')
-rw-r--r-- | ext2fs/ChangeLog | 6 | ||||
-rw-r--r-- | ext2fs/Makefile | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ext2fs/ChangeLog b/ext2fs/ChangeLog index 60f5157f..016e7af4 100644 --- a/ext2fs/ChangeLog +++ b/ext2fs/ChangeLog @@ -1,3 +1,9 @@ +Thu Sep 12 16:41:20 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * Makefile (HURDLIBS): New variable. + (ext2fs ext2fs.static): Depend on $(library_deps) instead of + explicit list. + Fri Sep 6 16:03:11 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * ext2fs.c: Include <version.h>. diff --git a/ext2fs/Makefile b/ext2fs/Makefile index 0c4d3467..3d28d91b 100644 --- a/ext2fs/Makefile +++ b/ext2fs/Makefile @@ -24,10 +24,12 @@ SRCS = balloc.c bitmap.c dir.c ext2fs.c getblk.c hyper.c ialloc.c \ inode.c pager.c pokel.c truncate.c storeinfo.c msg.c OBJS = $(SRCS:.c=.o) LCLHDRS = ext2fs.h ext2_fs.h ext2_fs_i.h +HURDLIBS=diskfs pager iohelp fshelp ports threads ihash shouldbeinlibc ext2fs.static-LDFLAGS += -static include ../Makeconf -ext2fs ext2fs.static: $(OBJS) ../libdiskfs/libdiskfs.a ../libpager/libpager.a ../libiohelp/libiohelp.a ../libfshelp/libfshelp.a ../libports/libports.a ../libthreads/libthreads.a ../libihash/libihash.a ../libshouldbeinlibc/libshouldbeinlibc.a +ext2fs ext2fs.static: $(OBJS) $(library_deps) + |