mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
3588127191
Add unit tests for the utility functions to convert between partition names and partition ids. Change-Id: I4b12f9d611cb9f3ce49909cda5cbcedd3e6c3d10 Reviewed-on: https://gerrit.openafs.org/13176 Reviewed-by: Benjamin Kaduk <kaduk@mit.edu> Tested-by: Benjamin Kaduk <kaduk@mit.edu>
31 lines
698 B
Makefile
31 lines
698 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 volutil-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)
|
|
|
|
volutil-t: volutil-t.o $(LIBS)
|
|
$(AFS_LDRULE) volutil-t.o $(LIBS) $(LIB_roken) $(XLIBS)
|
|
|
|
install:
|
|
|
|
clean distclean:
|
|
$(RM) -f $(tests) *.o core
|