mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 07:20:11 +00:00
2ce3fdc5dc
Abstract out the code which the volser test uses to produce a ubik client so that it can be used to test other ubik services Change-Id: I800fda9e53ad45c91f3de8eceea387cc011dda3c Reviewed-on: http://gerrit.openafs.org/7257 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@dementix.org>
33 lines
967 B
Makefile
33 lines
967 B
Makefile
|
|
srcdir=@srcdir@
|
|
abs_top_builddir=@abs_top_builddir@
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
include @TOP_OBJDIR@/src/config/Makefile.pthread
|
|
|
|
TESTS = vos-t
|
|
|
|
MODULE_CFLAGS=-I$(srcdir)/.. -I$(srcdir)/../common/
|
|
|
|
all check test tests: $(TESTS)
|
|
|
|
# The direct reference of viced libraries here is a colossal hack, but
|
|
# we're just not building pthreaded versions of the vldb interface at the moment.
|
|
# Soon, I hope ...
|
|
|
|
MODULE_LIBS = ../tap/libtap.a \
|
|
$(abs_top_builddir)/src/viced/vldbint.cs.o \
|
|
$(abs_top_builddir)/src/viced/vldbint.xdr.o \
|
|
$(abs_top_builddir)/lib/libafsauthent.a \
|
|
$(abs_top_builddir)/lib/libafsrpc.a \
|
|
$(abs_top_builddir)/lib/libafshcrypto.a \
|
|
$(abs_top_builddir)/lib/libopr.a \
|
|
$(LIB_rfc3961) $(LIB_roken) -lafsutil\
|
|
$(XLIBS)
|
|
|
|
vos-t: vos-t.o ../common/config.o ../common/servers.o ../common/ubik.o
|
|
$(AFS_LDRULE) vos-t.o ../common/config.o ../common/servers.o \
|
|
../common/ubik.o $(MODULE_LIBS)
|
|
|
|
clean:
|
|
rm -f *.o $(TESTS)
|