2000-11-15 07:15:12 +08:00
|
|
|
## HDF5-C++ test/Makefile(.in)
|
|
|
|
##
|
|
|
|
## Copyright (C) 2000 National Center for Supercomputing Applications.
|
|
|
|
## All rights reserved.
|
|
|
|
##
|
|
|
|
##
|
2000-11-16 02:00:04 +08:00
|
|
|
top_srcdir=@top_srcdir@/..
|
2000-11-15 07:15:12 +08:00
|
|
|
top_builddir=../..
|
|
|
|
srcdir=@srcdir@
|
|
|
|
@COMMENCE@
|
|
|
|
|
2000-12-05 04:25:14 +08:00
|
|
|
hdf5_srcdir=$(top_srcdir)/src
|
2000-11-15 07:15:12 +08:00
|
|
|
hdf5_builddir=$(top_builddir)/src
|
|
|
|
|
|
|
|
## Add include directory to the C preprocessor flags and the h5test and hdf5
|
|
|
|
## libraries to the library list.
|
|
|
|
LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir)
|
2000-11-16 00:06:32 +08:00
|
|
|
LIB=../src/libhdf5_cpp.la
|
2000-12-05 04:25:14 +08:00
|
|
|
CPPFLAGS=-I. -I../src -I$(srcdir)/../src -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@
|
2000-11-15 07:15:12 +08:00
|
|
|
HDF5LIB=$(hdf5_builddir)/libhdf5.la
|
|
|
|
|
2000-12-05 04:25:14 +08:00
|
|
|
## These are our main targets. They should be listed in the order to be
|
|
|
|
## executed, generally most specific tests to least specific tests.
|
|
|
|
RUNTEST=$(LT_RUN)
|
|
|
|
|
2000-11-15 07:15:12 +08:00
|
|
|
TEST_PROGS_SRC=
|
|
|
|
TEST_PROGS=
|
|
|
|
|
|
|
|
TEST_SRC=
|
|
|
|
TEST_OBJ=$(TEST_SRC:.C=.lo)
|
|
|
|
|
2000-12-05 04:25:14 +08:00
|
|
|
TEST_SCRIPTS=testexamples.sh
|
|
|
|
|
2000-11-15 07:15:12 +08:00
|
|
|
DISTCLEAN=$(TEST_PROGS_SRC:.C=.lo) $(TEST_PROGS_SRC:.C=.o) *.h5
|
|
|
|
|
|
|
|
$(TEST_PROGS): $(LIB)
|
|
|
|
@echo No C++ test as of yet.
|
|
|
|
|
|
|
|
@CONCLUDE@
|