mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
012b878576
Create a pthreaded version of libafsutil, named liboafs_util.la, and use this library in all of the pthreaded binaries that we build, replacing both inclusion of libafsutil.a, and direct compliation of pthreaded versions of the util source files. libafsutil.a is provided for legacy LWP applications, and the convenience library libafsutil_pic.a remains until we address the way in which the user space cache manager is built and linked. Change-Id: Ibdc3d6e2fe56ca6f5b882cf03991d1a2e32c62b2 Reviewed-on: http://gerrit.openafs.org/8056 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
28 lines
684 B
Makefile
28 lines
684 B
Makefile
# Build rules for the OpenAFS cmd test suite.
|
|
|
|
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/cmd/liboafs_cmd.la \
|
|
$(abs_top_builddir)/src/comerr/liboafs_comerr.la \
|
|
$(abs_top_builddir)/src/opr/liboafs_opr.la \
|
|
$(abs_top_builddir)/src/opr/liboafs_opr.la
|
|
|
|
tests = command-t
|
|
|
|
all check test tests: $(tests)
|
|
|
|
command-t: command-t.o $(LIBS)
|
|
$(LT_LDRULE_static) command-t.o $(LIBS) $(LIB_roken) $(XLIBS)
|
|
|
|
install:
|
|
|
|
clean distclean:
|
|
$(LT_CLEAN)
|
|
$(RM) -f $(tests) *.o core
|