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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
.SUFFIXES: .o .exe77 .exe90 .77o .90o .testcases77o
.PRECIOUS: %.o %.77o %.90o %.testcases77o
CPPFLAGS = -I$(PNETCDF_DIR)/include -I../common
CFLAGS = $(CPPFLAGS)
FCFLAGS = -w -fallow-argument-mismatch
LDFLAGS = -L$(PNETCDF_DIR)/lib
LDLIBS = testutils.o -lpnetcdf
TEST_PROGS =
C_src = ../C/pres_temp_4D_wr.c \
../C/pres_temp_4D_rd.c
TEST_PROGS += $(C_src:../C/%.c=%)
%.o: ../C/%.c
$(CC) $(CFLAGS) -c $<
header_src = ../header/header_consistency.c
TEST_PROGS += $(header_src:../header/%.c=%)
%.o: ../header/%.c
$(CC) $(CFLAGS) -c $<
nonblocking_src = ../nonblocking/flexible_bput.c \
../nonblocking/interleaved.c \
../nonblocking/req_all.c \
../nonblocking/i_varn_indef.c \
../nonblocking/large_num_reqs.c \
../nonblocking/test_bput.c \
../nonblocking/i_varn_int64.c \
../nonblocking/mcoll_perf.c \
../nonblocking/wait_after_indep.c
TEST_PROGS += $(nonblocking_src:../nonblocking/%.c=%)
%.o: ../nonblocking/%.c
$(CC) $(CFLAGS) -c $<
testcases_src = ../testcases/add_var.c \
../testcases/alignment_test.c \
../testcases/buftype_free.c \
../testcases/check_striping.c \
../testcases/check_type.c \
../testcases/collective_error.c \
../testcases/flexible.c \
../testcases/flexible2.c \
../testcases/flexible_var.c \
../testcases/flexible_varm.c \
../testcases/tst_grow_header.c \
../testcases/inq_num_vars.c \
../testcases/inq_recsize.c \
../testcases/ivarn.c \
../testcases/large_var_cdf5.c \
../testcases/last_large_var.c \
../testcases/mix_collectives.c \
../testcases/modes.c \
../testcases/ncmpi_vars_null_stride.c \
../testcases/noclobber.c \
../testcases/nonblocking.c \
../testcases/one_record.c \
../testcases/record.c \
../testcases/redef1.c \
../testcases/scalar.c \
../testcases/test_erange.c \
../testcases/test_fillvalue.c \
../testcases/test_get_varn.c \
../testcases/test_vard.c \
../testcases/test_vard_multiple.c \
../testcases/test_vard_rec.c \
../testcases/test_varm.c \
../testcases/tst_def_var_fill.c \
../testcases/tst_del_attr.c \
../testcases/tst_dimsizes.c \
../testcases/tst_free_comm.c \
../testcases/tst_max_var_dims.c \
../testcases/tst_redefine.c \
../testcases/tst_symlink.c \
../testcases/tst_version.c \
../testcases/varn_contig.c \
../testcases/varn_int.c \
../testcases/vectors.c
TEST_PROGS += $(testcases_src:../testcases/%.c=%)
%.o: ../testcases/%.c
$(CC) $(CFLAGS) -c $<
cdl_src = ../cdl/tst_cdl_hdr_parser.c
TEST_PROGS += $(cdl_src:../cdl/%.c=%)
%.o: ../cdl/%.c
$(CC) $(CFLAGS) -c $<
EXAMPLE_PROGS =
examples_C_src = ../../examples/C/block_cyclic.c \
../../examples/C/bput_varn_int64.c \
../../examples/C/bput_varn_uint.c \
../../examples/C/collective_write.c \
../../examples/C/column_wise.c \
../../examples/C/create_from_cdl.c \
../../examples/C/create_open.c \
../../examples/C/fill_mode.c \
../../examples/C/flexible_api.c \
../../examples/C/flexible_bottom.c \
../../examples/C/get_info.c \
../../examples/C/ghost_cell.c \
../../examples/C/global_attributes.c \
../../examples/C/hints.c \
../../examples/C/mput.c \
../../examples/C/nonblocking_write.c \
../../examples/C/nonblocking_write_in_def.c \
../../examples/C/put_vara.c \
../../examples/C/get_vara.c \
../../examples/C/put_varn_float.c \
../../examples/C/put_varn_int.c \
../../examples/C/time_var.c \
../../examples/C/transpose2D.c \
../../examples/C/transpose.c \
../../examples/C/vard_bottom.c \
../../examples/C/vard_int.c \
../../examples/C/vard_mvars.c
EXAMPLE_PROGS += $(examples_C_src:../../examples/C/%.c=%)
%.o: ../../examples/C/%.c
$(CC) $(CFLAGS) -c $<
F90_src = ../F90/f90tst_parallel.f90 \
../F90/f90tst_parallel2.f90 \
../F90/f90tst_parallel3.f90 \
../F90/f90tst_parallel4.f90
TEST_PROGS += $(F90_src:../F90/%.f90=%.exe90)
testcases_F77_src = ../testcases/attrf.f \
../testcases/buftype_freef.f \
../testcases/flexible_api.f \
../testcases/put_parameter.f \
../testcases/varn_intf.f
TEST_PROGS += $(testcases_F77_src:../testcases/%.f=%.exe77)
%.testcases77o: ../testcases/%.f
$(FC) $(CPPFLAGS) $(FCFLAGS) -c $< -o $@
examples_F77_src = ../../examples/F77/block_cyclic.f \
../../examples/F77/bput_varn_int8.f \
../../examples/F77/column_wise.f \
../../examples/F77/fill_mode.f \
../../examples/F77/flexible_api.f \
../../examples/F77/get_info.f \
../../examples/F77/hints.f \
../../examples/F77/i_varn_real.f \
../../examples/F77/nonblocking_write.f \
../../examples/F77/put_vara.f \
../../examples/F77/put_varn_int.f \
../../examples/F77/put_varn_real.f \
../../examples/F77/time_var.f \
../../examples/F77/transpose.f \
../../examples/F77/vard_int.f
EXAMPLE_PROGS += $(examples_F77_src:../../examples/F77/%.f=%.exe77)
%.77o: ../../examples/F77/%.f
$(FC) $(CPPFLAGS) $(FCFLAGS) -c $< -o $@
examples_F90_src = ../../examples/F90/block_cyclic.f90 \
../../examples/F90/column_wise.f90 \
../../examples/F90/fill_mode.f90 \
../../examples/F90/flexible_api.f90 \
../../examples/F90/get_info.f90 \
../../examples/F90/hints.f90 \
../../examples/F90/nonblocking_write.f90 \
../../examples/F90/put_var.f90 \
../../examples/F90/put_varn_int.f90 \
../../examples/F90/put_varn_real.f90 \
../../examples/F90/transpose.f90 \
../../examples/F90/vard_int.f90
EXAMPLE_PROGS += $(examples_F90_src:../../examples/F90/%.f90=%.exe90)
all: env_check testutils.o utils.o $(TEST_PROGS) $(EXAMPLE_PROGS) batch.sh interactive.sh
f90tst_parallel.exe90: ../F90/f90tst_parallel.f90 testutilsf.o
$(FC) $(CPPFLAGS) $(FCFLAGS) -o $@ $< testutilsf.o $(LDFLAGS) -lpnetcdf
f90tst_parallel2.exe90: ../F90/f90tst_parallel2.f90 testutilsf.o
$(FC) $(CPPFLAGS) $(FCFLAGS) -o $@ $< testutilsf.o $(LDFLAGS) -lpnetcdf
f90tst_parallel3.exe90: ../F90/f90tst_parallel3.f90 testutilsf.o
$(FC) $(CPPFLAGS) $(FCFLAGS) -o $@ $< testutilsf.o $(LDFLAGS) -lpnetcdf
f90tst_parallel4.exe90: ../F90/f90tst_parallel4.f90 testutilsf.o
$(FC) $(CPPFLAGS) $(FCFLAGS) -o $@ $< testutilsf.o $(LDFLAGS) -lpnetcdf
%.90o: ../../examples/F90/%.f90
$(FC) $(CPPFLAGS) $(FCFLAGS) -c $< -o $@
.77o.exe77:
$(FC) $(CPPFLAGS) $(FCFLAGS) -o $@ $< utils.o $(LDFLAGS) -lpnetcdf
attrf.testcases77o: testutilsf.o
.testcases77o.exe77:
$(FC) $(CPPFLAGS) $(FCFLAGS) -o $@ $< testutilsf.o $(LDFLAGS) -lpnetcdf
.90o.exe90:
$(FC) $(CPPFLAGS) $(FCFLAGS) -o $@ $< utils.o $(LDFLAGS) -lpnetcdf
env_check:
@if test "x$(CC)" = x ; then \
echo "Please set environment CC to the MPI C compiler" ; \
exit 1; \
fi
@if test "x$(FC)" = x ; then \
echo "Please set environment FC to the MPI Fortran compiler" ; \
exit 1; \
fi
@if test "x$(RUN_CMD)" = x ; then \
echo "Please set environment RUN_CMD to the MPI run command (e.g. mpiexec or srun)" ; \
exit 1; \
fi
@if test "x$(OUT_DIR)" = x ; then \
echo "Please set environment OUT_DIR to the folder for storing output files" ; \
exit 1; \
fi
@if test "x$(PNETCDF_DIR)" = x ; then \
echo "Please set environment PNETCDF_DIR to the PnetCDF install path" ; \
exit 1; \
fi
testutils.o: ../common/testutils.c
$(CC) $(CFLAGS) -I../common -c $< -o $@
testutilsf.o: ../common/testutilsf.F90
$(FC) $(CPPFLAGS) $(FCFLAGS) -c $< -o $@
utils.o: ../../examples/F90/utils.F90
$(FC) $(CPPFLAGS) $(FCFLAGS) -c $< -o $@
interactive.sh: interactive.sh.in makefile
@sed -e "s|__TEST_PROGS__|$(TEST_PROGS)|" $< > $@
@sed -i -e "s|__EXAMPLE_PROGS__|$(EXAMPLE_PROGS)|" $@
@sed -i -e "s|__RUN_CMD__|$(RUN_CMD)|" $@
@sed -i -e "s|__OUT_DIR__|$(OUT_DIR)|" $@
@sed -i -e "s|__PNETCDF_DIR__|$(PNETCDF_DIR)|" $@
batch.sh: batch.sh.in makefile
@sed -e "s|__TEST_PROGS__|$(TEST_PROGS)|" $< > $@
@sed -i -e "s|__EXAMPLE_PROGS__|$(EXAMPLE_PROGS)|" $@
@sed -i -e "s|__RUN_CMD__|$(RUN_CMD)|" $@
@sed -i -e "s|__OUT_DIR__|$(OUT_DIR)|" $@
@sed -i -e "s|__PNETCDF_DIR__|$(PNETCDF_DIR)|" $@
clean:
rm -f *.o *.77o *.90o *.testcases77o $(TEST_PROGS) $(EXAMPLE_PROGS) batch.sh interactive.sh
|