Empty benchmarking application
authorMike Taylor <mike@indexdata.com>
Wed, 24 Dec 2003 16:23:43 +0000 (16:23 +0000)
committerMike Taylor <mike@indexdata.com>
Wed, 24 Dec 2003 16:23:43 +0000 (16:23 +0000)
util/.cvsignore
util/Makefile.am
util/benchmark.c [new file with mode: 0644]

index b750665..c20ce4f 100644 (file)
@@ -14,3 +14,4 @@ srwtst
 yaz-config
 yaz-iconv
 yaz-marcdump
+yaz-benchmark
index 62796a0..e5a2eaa 100644 (file)
@@ -1,6 +1,6 @@
 ## Copyright (C) 1994-2003, Index Data
 ## All rights reserved.
-## $Id: Makefile.am,v 1.23 2003-10-27 12:21:38 adam Exp $
+## $Id: Makefile.am,v 1.24 2003-12-24 16:23:43 mike Exp $
 
 TESTS = $(check_PROGRAMS)
 
@@ -11,7 +11,7 @@ EXTRA_DIST = yaz-asncomp
 AM_CPPFLAGS=-I$(top_srcdir)/include
 
 bin_PROGRAMS = yaz-marcdump yaz-iconv
-noinst_PROGRAMS = cclsh cql2pqf cql2xcql srwtst
+noinst_PROGRAMS = cclsh cql2pqf cql2xcql srwtst yaz-benchmark
 
 # MARC dumper utility
 yaz_marcdump_LDADD = ../src/libyaz.la 
@@ -33,4 +33,6 @@ cql2pqf_LDADD = ../src/libyaz.la
 cql2xcql_SOURCES = cql2xcql.c
 cql2xcql_LDADD = ../src/libyaz.la
 
+yaz_benchmark_LDADD = ../src/libyaz.la 
+yaz_benchmark_SOURCES = benchmark.c
 
diff --git a/util/benchmark.c b/util/benchmark.c
new file mode 100644 (file)
index 0000000..963e510
--- /dev/null
@@ -0,0 +1,18 @@
+/* $Id: benchmark.c,v 1.1 2003-12-24 16:23:43 mike Exp $
+   Copyright (C) 2003
+   Index Data Aps
+
+   This file is part of the YAZ toolkit.
+
+   See the file LICENSE.
+*/
+
+#include <stdlib.h>
+#include <stdio.h>
+
+#include <yaz/zoom.h>
+
+
+int main(int argc, char **argv)
+{
+}