mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 07:20:11 +00:00
fd5174d918
The ktime tests need libopr for the lcstring routines. Add the dependency. Change-Id: I6902537236fbf35a654a3a4d70fa8f2df89e2a92 Reviewed-on: http://gerrit.openafs.org/5664 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@dementix.org>
28 lines
596 B
Makefile
28 lines
596 B
Makefile
# Build rules for the OpenAFS util test suite.
|
|
|
|
srcdir=@srcdir@
|
|
abs_top_builddir=@abs_top_builddir@
|
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
|
include @TOP_OBJDIR@/src/config/Makefile.lwp
|
|
|
|
MODULE_CFLAGS = -I$(srcdir)/..
|
|
|
|
LIBS = ../tap/libtap.a \
|
|
$(abs_top_builddir)/lib/util.a \
|
|
$(abs_top_builddir)/lib/libopr.a
|
|
|
|
tests = ktime-t exec-alt-t
|
|
|
|
all check test tests: $(tests)
|
|
|
|
ktime-t: ktime-t.o $(LIBS)
|
|
$(AFS_LDRULE) ktime-t.o $(LIBS) $(XLIBS)
|
|
|
|
exec-alt-t: exec-alt-t.o $(LIBS)
|
|
$(AFS_LDRULE) exec-alt-t.o $(LIBS) $(XLIBS)
|
|
|
|
install:
|
|
|
|
clean distclean:
|
|
$(RM) -f $(tests) *.o core
|