mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 23:40:13 +00:00
5be3cdc3f3
Add a simple implementation of a dictionary/hash structure based around opr queues and the jhash hashing function. Change-Id: I4ae5cafcef377b05c8caa7c455737a992b1d36cd Reviewed-on: http://gerrit.openafs.org/8355 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
34 lines
852 B
Makefile
34 lines
852 B
Makefile
srcdir=@srcdir@
|
|
abs_top_builddir=@abs_top_builddir@
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
include @TOP_OBJDIR@/src/config/Makefile.pthread
|
|
|
|
MODULE_CFLAGS = -I$(srcdir)/../..
|
|
|
|
LIBS=../tap/libtap.a $(abs_top_builddir)/src/opr/liboafs_opr.la
|
|
|
|
tests = dict-t jhash-t queues-t rbtree-t time-t uuid-t
|
|
|
|
all check test tests: $(tests)
|
|
|
|
dict-t: dict-t.o
|
|
$(LT_LDRULE_static) dict-t.o $(LIBS) $(XLIBS)
|
|
|
|
queues-t: queues-t.o
|
|
$(LT_LDRULE_static) queues-t.o ../tap/libtap.a $(XLIBS)
|
|
|
|
rbtree-t: rbtree-t.o $(LIBS)
|
|
$(LT_LDRULE_static) rbtree-t.o ../tap/libtap.a $(LIBS) $(XLIBS)
|
|
|
|
jhash-t: jhash-t.o
|
|
$(LT_LDRULE_static) jhash-t.o ../tap/libtap.a $(XLIBS)
|
|
|
|
time-t: time-t.o
|
|
$(LT_LDRULE_static) time-t.o ../tap/libtap.a $(XLIBS)
|
|
|
|
uuid-t: uuid-t.o
|
|
$(LT_LDRULE_static) uuid-t.o ../tap/libtap.a $(LIBS) $(XLIBS)
|
|
|
|
clean distclean:
|
|
$(RM) -f $(tests) *.o core
|