mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
6d5c1873b5
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>
26 lines
545 B
Makefile
26 lines
545 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
|
|
|
|
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
|