2000-09-20 04:06:49 +08:00
|
|
|
##
|
2002-09-24 06:06:01 +08:00
|
|
|
## Copyright by the Board of Trustees of the University of Illinois.
|
|
|
|
## All rights reserved.
|
2000-09-20 04:06:49 +08:00
|
|
|
##
|
2002-09-24 06:06:01 +08:00
|
|
|
## This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
## terms governing use, modification, and redistribution, is contained in
|
|
|
|
## the files COPYING and Copyright.html. COPYING can be found at the root
|
|
|
|
## of the source code distribution tree; Copyright.html can be found at the
|
|
|
|
## root level of an installed copy of the electronic HDF5 document set and
|
|
|
|
## is linked from the top-level documents page. It can also be found at
|
|
|
|
## http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
|
|
|
|
## access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
|
2000-09-20 04:06:49 +08:00
|
|
|
##
|
2003-08-14 12:58:29 +08:00
|
|
|
## HDF5-Fortran test/Makefile(.in)
|
|
|
|
##
|
2003-07-29 05:38:04 +08:00
|
|
|
top_srcdir=@top_srcdir@
|
2000-10-12 00:34:34 +08:00
|
|
|
top_builddir=../..
|
2000-09-20 04:06:49 +08:00
|
|
|
srcdir=@srcdir@
|
|
|
|
@COMMENCE@
|
|
|
|
|
2003-07-29 05:38:04 +08:00
|
|
|
HDF_FORTRAN="yes"
|
|
|
|
|
2002-09-25 00:05:20 +08:00
|
|
|
hdf5_srcdir=$(top_srcdir)/src
|
2000-10-12 01:30:57 +08:00
|
|
|
hdf5_builddir=$(top_builddir)/src
|
2002-09-25 00:05:20 +08:00
|
|
|
CPPFLAGS=-I. -I$(hdf5_builddir) -I$(hdf5_srcdir) @CPPFLAGS@
|
2005-01-22 09:16:57 +08:00
|
|
|
FSEARCH_DIRS=@F9XMODFLAG@../src @FSEARCH_DIRS@
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
## Add include directory to the C preprocessor flags and the h5test and hdf5
|
|
|
|
## libraries to the library list.
|
|
|
|
FLIB=../src/libhdf5_fortran.la
|
2000-10-12 01:09:28 +08:00
|
|
|
HDF5LIB=$(hdf5_builddir)/libhdf5.la
|
2002-09-24 06:06:01 +08:00
|
|
|
TCLIB=../../test/.libs/libh5test.a
|
|
|
|
LIB=libh5test_fortran.la
|
|
|
|
LIB_CSRC=t.c
|
|
|
|
LIB_FSRC=tf.f90
|
|
|
|
LIB_OBJ=$(LIB_FSRC:.f90=.lo) $(LIB_CSRC:.c=.lo)
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
TEST_PROGS_SRC=fortranlib_test.f90 fflush1.f90 fflush2.f90
|
|
|
|
TEST_PROGS=$(TEST_PROGS_SRC:.f90=)
|
|
|
|
|
2003-06-09 23:25:42 +08:00
|
|
|
# fortranlib_test settting
|
|
|
|
FORTLIBTEST_FSRC=fortranlib_test.f90 \
|
|
|
|
tH5F.f90 tH5D.f90 tH5R.f90 tH5S.f90 tH5T.f90 tH5VL.f90 tH5Z.f90\
|
|
|
|
tH5Sselect.f90 tH5P.f90 tH5A.f90 tH5I.f90 tH5G.f90 tH5E.f90 tf.f90
|
|
|
|
FORTLIBTEST_CSRC = t.c
|
|
|
|
FORTLIBTEST_OBJ=$(FORTLIBTEST_FSRC:.f90=.lo) $(FORTLIBTEST_CSRC:.c=.lo)
|
|
|
|
|
|
|
|
TEST_OBJ=$(FORTLIBTEST_OBJ) $(TEST_PROGS_SRC:.f90=.lo)
|
2005-01-12 09:49:04 +08:00
|
|
|
PUB_LIB=
|
2000-09-20 04:06:49 +08:00
|
|
|
|
2003-06-09 10:40:16 +08:00
|
|
|
## Temporary files
|
|
|
|
MOSTLYCLEAN=*.h5 *.tmp
|
|
|
|
|
2002-09-24 06:06:01 +08:00
|
|
|
$(TEST_PROGS): $(LIB) $(FLIB)
|
2000-09-20 04:06:49 +08:00
|
|
|
|
2003-06-09 23:25:42 +08:00
|
|
|
fortranlib_test: $(FORTLIBTEST_OBJ)
|
2003-08-09 02:33:45 +08:00
|
|
|
@$(LT_LINK_FEXE) $(FFLAGS) -o $@ $(FORTLIBTEST_OBJ) $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB)
|
2000-09-20 04:06:49 +08:00
|
|
|
|
2002-09-24 06:06:01 +08:00
|
|
|
fflush1: fflush1.lo
|
2003-08-09 02:33:45 +08:00
|
|
|
@$(LT_LINK_FEXE) $(FFLAGS) -o $@ fflush1.lo $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB)
|
2000-09-20 04:06:49 +08:00
|
|
|
|
2002-09-24 06:06:01 +08:00
|
|
|
fflush2: fflush2.lo
|
2003-08-09 02:33:45 +08:00
|
|
|
@$(LT_LINK_FEXE) $(FFLAGS) -o $@ fflush2.lo $(LIB) $(TCLIB) $(FLIB) $(LIBS) $(HDF5LIB)
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
@CONCLUDE@
|