openafs/tests/util/Makefile.in
Russ Allbery 2e2494d6db Add a sample test program to the new test suite
Add a modified version of src/util/test_ktime to the new test suite
as an example of how to write a test program with the new harness.

Change-Id: Ifbceff1905f9f0dd686c2a2d2edc2f8796e7918f
Reviewed-on: http://gerrit.openafs.org/2063
Reviewed-by: Derrick Brashear <shadow@dementia.org>
Tested-by: Derrick Brashear <shadow@dementia.org>
2010-05-29 21:48:40 -07:00

21 lines
378 B
Makefile

# Build rules for the OpenAFS util test suite.
srcdir=@srcdir@
abs_top_srcdir=@abs_top_srcdir@
include @TOP_OBJDIR@/src/config/Makefile.config
CFLAGS += -I$(srcdir)/..
tests = ktime-t
all: $(tests)
ktime-t: ktime-t.o
$(CC) $(LDFLAGS) -o ktime-t ktime-t.o ../tap/libtap.a \
$(abs_top_srcdir)/lib/util.a $(XLIBS)
install:
clean distclean:
$(RM) -f $(tests) *.o core