summaryrefslogtreecommitdiffstats
path: root/fortran/test/Makefile.in
blob: b34a123e2088020eee8fd67ad14a55cfb54ee121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
##  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
##  * Copyright by the Board of Trustees of the University of Illinois.         *
##  * All rights reserved.                                                      *
##  *                                                                           *
##  * 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. *
##  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
##  HDF5-Fortran test/Makefile(.in)
##


top_srcdir=@top_srcdir@/..
top_builddir=../..
srcdir=@srcdir@
@COMMENCE@

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 $(F9X) -static -rpath $(libdir)
FLIB=../src/libhdf5_fortran.la
HDF5LIB=$(hdf5_builddir)/libhdf5.la

TEST_PROGS_SRC=fortranlib_test.f90 fflush1.f90 fflush2.f90
TEST_PROGS=$(TEST_PROGS_SRC:.f90=)

TEST_SRC=hdf5test.f90 tH5F.f90 tH5D.f90 tH5R.f90 tH5S.f90 tH5T.f90	\
	 tH5Sselect.f90 tH5P.f90 tH5A.f90 tH5I.f90 tH5G.f90 tH5E.f90
TEST_OBJ=$(TEST_SRC:.f90=.lo)

DISTCLEAN=$(TEST_PROGS_SRC:.f90=.lo) $(TEST_PROGS_SRC:.f90=.o) *.h5

$(TEST_PROGS): $(FLIB)

fortranlib_test: fortranlib_test.lo $(TEST_OBJ)
	@$(LT_LINK_FEXE) $(FFLAGS) -o $@ fortranlib_test.lo $(TEST_OBJ) $(FLIB) $(LIBS) $(HDF5LIB)

fflush1: fflush1.lo hdf5test.lo
	@$(LT_LINK_FEXE) $(FFLAGS) -o $@ fflush1.lo hdf5test.lo $(FLIB) $(LIBS) $(HDF5LIB)

fflush2: fflush2.lo hdf5test.lo
	@$(LT_LINK_FEXE) $(FFLAGS) -o $@ fflush2.lo hdf5test.lo $(FLIB) $(LIBS) $(HDF5LIB)

@CONCLUDE@