mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
564fe1e329
Build a pthreaded, libtool, version of librx.a called liboafs_rx.la. librx.a remains for LWP applications to use. With this change, all RX objects are built in both the LWP and pthread cases, so some #ifdef guards are required to protect code that isn't relevant in a given build. Currently, all of our pthreaded objects use libafsrpc to get RX functionality, so this change is fairly minimal outside of the RX directory. Change-Id: I8e629e2319fb1964058e70c3c0c3ed548b09b22d Reviewed-on: http://gerrit.openafs.org/8058 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
24 lines
510 B
Makefile
24 lines
510 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)/src/rx/liboafs_rx.la
|
|
|
|
tests = event-t
|
|
|
|
all check test tests: $(tests)
|
|
|
|
event-t: event-t.o $(LIBS)
|
|
$(LT_LDRULE_static) event-t.o $(LIBS) $(LIB_roken) $(XLIBS)
|
|
install:
|
|
|
|
clean distclean:
|
|
$(LT_clean)
|
|
$(RM) -f $(tests) *.o core
|