mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 21:47:45 +00:00
519f2b96c7
The volser Makefile had a bad path for liboafs_util, and was still directly pulling in some objects from the fileserver build. Fix it so that it uses proper libraries. Change-Id: Ic36c6a0f93c299bd04d48fa4238c4da5cbc571d4 Reviewed-on: http://gerrit.openafs.org/8125 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Jason Edgecombe <jason@rampaginggeek.com> Tested-by: Jason Edgecombe <jason@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
24 lines
568 B
Makefile
24 lines
568 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)
|
|
|
|
MODULE_LIBS = ../tap/libtap.a \
|
|
$(abs_top_builddir)/src/vlserver/liboafs_vldb.la \
|
|
$(XLIBS)
|
|
|
|
vos-t: vos-t.o ../common/config.o ../common/servers.o ../common/ubik.o
|
|
$(LT_LDRULE_static) vos-t.o ../common/config.o ../common/servers.o \
|
|
../common/ubik.o $(MODULE_LIBS)
|
|
|
|
clean:
|
|
$(LT_CLEAN)
|
|
rm -f *.o $(TESTS)
|