mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 15:00:12 +00:00
Fix util test dependencies
The test programs in tests/util did not depend on libutil.a or libtap.a. So, if libutil.a changed, they were not relinked. Add the dependencies so correcting a part of libutil will cause the tests to actually reflect the change. Change-Id: Iad9d15ef6affd8178d7ef7cb919f66dcce8c61da Reviewed-on: http://gerrit.openafs.org/2484 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
parent
c8dc68299d
commit
6d5c1873b5
@ -7,17 +7,17 @@ include @TOP_OBJDIR@/src/config/Makefile.lwp
|
||||
|
||||
MODULE_CFLAGS = -I$(srcdir)/..
|
||||
|
||||
LIBS = ../tap/libtap.a $(abs_top_builddir)/lib/util.a
|
||||
|
||||
tests = ktime-t exec-alt-t
|
||||
|
||||
all check test tests: $(tests)
|
||||
|
||||
ktime-t: ktime-t.o
|
||||
$(AFS_LDRULE) ktime-t.o ../tap/libtap.a \
|
||||
$(abs_top_builddir)/lib/util.a $(XLIBS)
|
||||
ktime-t: ktime-t.o $(LIBS)
|
||||
$(AFS_LDRULE) ktime-t.o $(LIBS) $(XLIBS)
|
||||
|
||||
exec-alt-t: exec-alt-t.o
|
||||
$(AFS_LDRULE) exec-alt-t.o ../tap/libtap.a \
|
||||
$(abs_top_builddir)/lib/util.a $(XLIBS)
|
||||
exec-alt-t: exec-alt-t.o $(LIBS)
|
||||
$(AFS_LDRULE) exec-alt-t.o $(LIBS) $(XLIBS)
|
||||
|
||||
install:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user