diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-11-15 22:46:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-11-15 22:46:32 (GMT) |
commit | af35ac0ec1aa4ca7ec31ae58cf8e47b620f54062 (patch) | |
tree | a6fe604e17deeea9c5844dd8e950ca7739dba813 /perform/Makefile.in | |
parent | 5077ac0c90290efc9611fcfca7c689f9b66b6d0d (diff) | |
download | hdf5-af35ac0ec1aa4ca7ec31ae58cf8e47b620f54062.zip hdf5-af35ac0ec1aa4ca7ec31ae58cf8e47b620f54062.tar.gz hdf5-af35ac0ec1aa4ca7ec31ae58cf8e47b620f54062.tar.bz2 |
[svn-r4608]
Purpose:
bug Fix
Description:
Changed the code so that if parallel stuff isn't enabled, then we
don't compile the parallel code.
Solution:
Cleaned up the code and put #ifdef's around it checking for parallel
flags.
Platforms tested:
Linux
Diffstat (limited to 'perform/Makefile.in')
-rw-r--r-- | perform/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/perform/Makefile.in b/perform/Makefile.in index a9f2f2a..c99ca07 100644 --- a/perform/Makefile.in +++ b/perform/Makefile.in @@ -19,8 +19,7 @@ LIBH5TOOLS=../tools/lib/libh5tools.la ## These are the programs that `make all' or `make tests' will build and which ## `make check' will run. List them in the order they should be run. ##Temporary disable the compiling of pio_perf codes while I fix it. -##TEST_PROGS_PARA=mpi-perf perf pio_perf -TEST_PROGS_PARA=mpi-perf perf +TEST_PROGS_PARA=mpi-perf perf pio_perf TEST_PROGS=iopipe chunk overhead ## These are the files that `make clean' (and derivatives) will remove from @@ -31,9 +30,11 @@ CLEAN=*.h5 *.raw *.dat x-gnuplot ## created by replacing the `.c' with a `.o'. This list is necessary ## for building automatic dependencies. PIO_PERF_SRC=pio_perf.c pio_engine.c pio_timer.c +PIO_PERF_OBJ=$(PIO_PERF_SRC:.c=.lo) + TEST_SRC_PARA=mpi-perf.c perf.c $(PIO_PERF_SRC) + TEST_SRC=iopipe.c chunk.c overhead.c $(TEST_SRC_PARA) -PIO_PERF_OBJ=$(PIO_PERF_SRC:.c=.lo) TEST_OBJ=$(TEST_SRC:.c=.lo) ## How to build the programs... they all depend on the hdf5 library |