diff options
author | Roland McGrath <roland@gnu.org> | 2002-03-14 21:09:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-03-14 21:09:54 +0000 |
commit | d99574dbe8c7f0591c29d86bc63a624a4da7db62 (patch) | |
tree | 87eaeb9bf9c6f8ea1f1411231d8ed951c5652d07 /libstore/device.c | |
parent | 00079039055aa37c6e372a76e2872aaeca12adfc (diff) | |
download | hurd-d99574dbe8c7f0591c29d86bc63a624a4da7db62.tar.gz hurd-d99574dbe8c7f0591c29d86bc63a624a4da7db62.tar.bz2 hurd-d99574dbe8c7f0591c29d86bc63a624a4da7db62.zip |
2002-02-08 Roland McGrath <roland@frob.com>
* Makefile (store-types): New variable.
(all): Depend on $(store-types:%=libstore_%.a).
(libstore_%.so.$(hurd-version)): New pattern rule.
($(store-types:%=libstore_%.a): libstore_%.a): New static pattern rule
to create `-lstore_TYPE' pseudo-objects (linker scripts) for each type.
(libstore.so-LDLIBS): New variable, adds -ldl.
(GUNZIP_OBJS, BUNZIP2_OBJS): New variables.
(UNZIP_OBJS): Variable removed, replaced by those two.
(OBJS): Update use.
(libstore_gunzip.so.$(hurd-version)): Depend on PIC $(GUNZIP_OBJS).
(libstore_bunzip2.so.$(hurd-version)): Depend on PIC $(BUNZIP2_OBJS).
* unknown.c: Add STORE_STD_CLASS decl.
* bunzip2.c: Likewise.
* copy.c: Likewise.
* device.c: Likewise.
* file.c: Likewise.
* gunzip.c: Likewise.
* memobj.c: Likewise.
* module.c: Likewise.
* mvol.c: Likewise.
* nbd.c: Likewise.
* open.c: Likewise.
* part.c: Likewise.
* remap.c: Likewise.
* stripe.c: Likewise.
* stripe.c: Likewise.
* task.c: Likewise.
* typed.c: Likewise.
* typed.c: Likewise.
* unknown.c: Likewise.
* url.c: Likewise.
* zero.c: Likewise.
Diffstat (limited to 'libstore/device.c')
-rw-r--r-- | libstore/device.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libstore/device.c b/libstore/device.c index 014c815b..fa347bea 100644 --- a/libstore/device.c +++ b/libstore/device.c @@ -1,6 +1,6 @@ /* Mach device store backend - Copyright (C) 1995,96,97,99,2001 Free Software Foundation, Inc. + Copyright (C) 1995,96,97,99,2001,02 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. @@ -239,6 +239,7 @@ store_device_class = store_std_leaf_allocate_encoding, store_std_leaf_encode, dev_decode, dev_set_flags, dev_clear_flags, 0, 0, 0, dev_open, 0, dev_map }; +STORE_STD_CLASS (device); /* Return a new store in STORE referring to the mach device DEVICE. Consumes the send right DEVICE. */ |