## 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)
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
cql2xcql_SOURCES = cql2xcql.c
cql2xcql_LDADD = ../src/libyaz.la
+yaz_benchmark_LDADD = ../src/libyaz.la
+yaz_benchmark_SOURCES = benchmark.c
--- /dev/null
+/* $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)
+{
+}