Purpose:
Bug Fixes
Description:
If the system doesn't support modules, then the F9XMODFLAG would be
empty. This would cause things like '.' and '../src' to be stranded
on the compile line by themselves and the compiler would barf.
Also, there needs to be a dependence between the thyperslab_wr
program and the THDF5 module.
Solution:
Put the code to generate the -{M,I,p}<directory> flags in the
acsite.m4 file since it's not possible to check if a macro is empty
and do substitution on it in the Makefiles.
Put a dependency in the Makefile.in so that THDF5 will be made before
the thyperslab_wr program.
Platforms tested:
Linux
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
## HDF5-Fortran test/Makefile(.in)
|
|
##
|
|
## Copyright (C) 2000 National Center for Supercomputing Applications.
|
|
## All rights reserved.
|
|
##
|
|
##
|
|
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
|
|
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@
|