From 780b10fb74f2c2acf8bc86bf8d503a8adaf2a07f Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 28 Dec 2009 00:21:16 +0000 Subject: Performance testing programs for krb5_init_context and profile data fetch git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23523 dc483132-0cff-0310-8789-dd5450dbe970 --- src/tests/threads/Makefile.in | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/tests/threads/Makefile.in') diff --git a/src/tests/threads/Makefile.in b/src/tests/threads/Makefile.in index 1b291e1fe..139972a2e 100644 --- a/src/tests/threads/Makefile.in +++ b/src/tests/threads/Makefile.in @@ -7,6 +7,8 @@ RUN_SETUP = @KRB5_RUN_ENV@ SRCS=$(srcdir)/t_rcache.c \ $(srcdir)/gss-perf.c \ + $(srcdir)/init_ctx.c \ + $(srcdir)/profread.c \ $(srcdir)/prof1.c all:: @@ -23,9 +25,15 @@ prof1: prof1.o $(KRB5_BASE_DEPLIBS) prof1.o: prof1.c -gss-perf: gss-perf.o +gss-perf: gss-perf.o $(KRB5_BASE_DEPLIBS) $(GSS_DEPLIBS) $(CC_LINK) $(PTHREAD_CFLAGS) -o gss-perf gss-perf.o $(GSS_LIBS) $(KRB5_BASE_LIBS) $(THREAD_LINKOPTS) +init_ctx: init_ctx.o $(KRB5_BASE_DEPLIBS) + $(CC_LINK) $(PTHREAD_CFLAGS) -o init_ctx init_ctx.o $(KRB5_BASE_LIBS) $(THREAD_LINKOPTS) + +profread: profread.o $(KRB5_BASE_DEPLIBS) + $(CC_LINK) $(PTHREAD_CFLAGS) -o profread profread.o $(KRB5_BASE_LIBS) $(THREAD_LINKOPTS) + check-unix:: run-t_rcache install:: -- cgit