mirror of
https://git.openafs.org/openafs.git
synced 2025-01-21 08:20:16 +00:00
02f470e99d
On Linux, the RX library has a dependency on libroken for the rk_socket function. Add this dependency to the RX tests. Change-Id: I306e846524232bc136cd969ab1b8664d1c570e2d Reviewed-on: http://gerrit.openafs.org/7127 Tested-by: Simon Wilkinson <simonxwilkinson@gmail.com> Reviewed-by: Derrick Brashear <shadow@dementix.org>
24 lines
525 B
Makefile
24 lines
525 B
Makefile
# Build rules for the OpenAFS RX 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/libafsrpc.a \
|
|
$(abs_top_builddir)/lib/libopr.a
|
|
|
|
tests = event-t
|
|
|
|
all check test tests: $(tests)
|
|
|
|
event-t: event-t.o $(LIBS)
|
|
$(AFS_LDRULE) event-t.o $(LIBS) $(LIB_roken) $(XLIBS)
|
|
install:
|
|
|
|
clean distclean:
|
|
$(RM) -f $(tests) *.o core
|