mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
55efff93fe
Move the header which is installed as opr/queues.h out of util/ and into the new, top level, opr/ directory. Similarly move the tests out of the util/ test suite, and into the opr/ tests Change-Id: I81af487f09e1f0f4b25654a1f64c5ac75fd5a95b Reviewed-on: http://gerrit.openafs.org/5656 Reviewed-by: Derrick Brashear <shadow@dementix.org> Tested-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
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
|