mirror of
https://github.com/gluster/gluster-block.git
synced 2026-02-06 06:45:30 +01:00
$ gluster-blockd --help
gluster-blockd (0.2)
usage:
gluster-blockd [--glfs-lru-count <count>]
commands:
--glfs-lru-count <count>
glfs objects cache capacity [max: 512] (default: 5)
--help
show this message and exit.
--version
show version info and exit.
Change-Id: I00a9277690a1c5ace51e223e9e4ed9ce61ae2428
Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
17 lines
391 B
Makefile
17 lines
391 B
Makefile
noinst_LTLIBRARIES = libgb.la
|
|
|
|
libgb_la_SOURCES = common.c utils.c lru.c
|
|
|
|
noinst_HEADERS = common.h utils.h lru.h list.h
|
|
|
|
libgb_la_CFLAGS = $(GFAPI_CFLAGS) -DDATADIR=\"$(localstatedir)\" \
|
|
-I$(top_builddir)/ -I$(top_builddir)/rpc/rpcl
|
|
|
|
libgb_la_LIBADD = $(GFAPI_LIBS)
|
|
|
|
libgb_ladir = $(includedir)/gluster-block/utils
|
|
|
|
DISTCLEANFILES = Makefile.in
|
|
|
|
CLEANFILES = *~
|