mirror of
https://git.openafs.org/openafs.git
synced 2025-01-21 08:20:16 +00:00
eaea11ef0f
The cmd/command-t test needs libopr, so give it to it Change-Id: I74ca08efffb0c0f6245498c9dc0dcf5287915bbd Reviewed-on: http://gerrit.openafs.org/6949 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com> Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
27 lines
621 B
Makefile
27 lines
621 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)/lib/libcmd.a \
|
|
$(abs_top_builddir)/lib/libafscom_err.a \
|
|
$(abs_top_builddir)/lib/libopr.a \
|
|
$(abs_top_builddir)/lib/util.a
|
|
|
|
tests = command-t
|
|
|
|
all check test tests: $(tests)
|
|
|
|
command-t: command-t.o $(LIBS)
|
|
$(AFS_LDRULE) command-t.o $(LIBS) $(LIB_roken) $(XLIBS)
|
|
|
|
install:
|
|
|
|
clean distclean:
|
|
$(RM) -f $(tests) *.o core
|