mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
100cec69fb
Change-Id: I35d16ba418d0ecd67ffbd54d564a515bf551fe8d Reviewed-on: http://gerrit.openafs.org/8146 Reviewed-by: Derrick Brashear <shadow@your-file-system.com> Tested-by: BuildBot <buildbot@rampaginggeek.com>
25 lines
612 B
Makefile
25 lines
612 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 \
|
|
../common/network.o
|
|
$(LT_LDRULE_static) vos-t.o ../common/config.o ../common/servers.o \
|
|
../common/ubik.o ../common/network.o $(MODULE_LIBS)
|
|
|
|
clean:
|
|
$(LT_CLEAN)
|
|
rm -f *.o $(TESTS)
|