diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-04-30 11:03:52 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-04-30 11:03:52 +0000 |
commit | ce959a36a7b1be57a2835b647540f5ba15c7735e (patch) | |
tree | c6196184b1cea4f7e023c8fc2615524e43211210 /libstore/Makefile | |
parent | 91c0bb0d6d1e8f55bb9f10b3a9068c9677ede0ee (diff) |
1998-09-06 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
* bunzip2.c: New file.
* store.h (store_bunzip2_create): New declarations.
(store_bunzip2_open): Likewise.
(store_bunzip2_class): Likewise.
* std.c (store_std_classes): Add store_bunzip2_class.
* Makefile (SRCS): Add bunzip2.c.
(UNZIP_OBJS): Add do-bunzip2.o.
Diffstat (limited to 'libstore/Makefile')
-rw-r--r-- | libstore/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libstore/Makefile b/libstore/Makefile index edf47996..35f74fdc 100644 --- a/libstore/Makefile +++ b/libstore/Makefile @@ -25,11 +25,12 @@ makemode := library libname = libstore SRCS = create.c derive.c make.c rdwr.c set.c device.c file.c stripe.c \ enc.c encode.c decode.c clone.c argp.c std.c kids.c zero.c flags.c \ - open.c remap.c xinl.c task.c typed.c copy.c gunzip.c map.c mvol.c + open.c remap.c xinl.c task.c typed.c copy.c gunzip.c map.c mvol.c \ + bunzip2.c LCLHDRS=store.h installhdrs=store.h -UNZIP_OBJS = unzip.o inflate.o util.o +UNZIP_OBJS = unzip.o inflate.o util.o do-bunzip2.o OBJS = $(SRCS:.c=.o) $(UNZIP_OBJS) # Look for zip stuff |