1
1
Ralph Castain 1e2019ce2a Revert "Update to sync with OMPI master and cleanup to build"
This reverts commit cb55c88a8b7817d5891ff06a447ea190b0e77479.
2016-11-22 15:03:20 -08:00

44 строки
1.2 KiB
Makefile

# -*- Mode: Makefile; -*-
#
# (C) 2011 by Argonne National Laboratory.
# See COPYRIGHT in top-level directory.
#
# This directory is only listed in DIST_SUBDIRS, not SUBDIRS, so its contents
# will not be built by default, but it will participate in "make distclean" and
# friends.
# override the normal compilers for the tests
CC = $(TEST_CC)
F77 = $(TEST_F77)
# because := is not universally avalible, we have to play games to use the
# user-specified LDFLAGS and OUR_LIBS env. variables (if set)
OUR_LIBS = $(TEST_LIBNAME) $(MPI_LIB)
LDADD = $(OUR_LIBS)
AM_CPPFLAGS = $(ROMIO_INCLUDE)
AM_CFLAGS = $(USER_CFLAGS)
AM_FFLAGS = $(USER_FFLAGS)
CTESTS = simple perf async coll_test coll_perf misc file_info excl large_array \
atomicity noncontig i_noncontig noncontig_coll split_coll shared_fp \
large_file psimple error status noncontig_coll2 aggregation1 aggregation2 \
async-multiple ordered_fp hindexed external32 types_with_zeros darray_read
FTESTS = fcoll_test fperf fmisc pfcoll_test
noinst_PROGRAMS = $(CTESTS)
if BUILD_F77_TESTS
noinst_PROGRAMS += $(FTESTS)
fperf_SOURCES = fperf.f
fcoll_test_SOURCES = fcoll_test.f
fmisc_SOURCES = fmisc.f
pfcoll_test_SOURCES = pfcoll_test.f
endif BUILD_F77_TESTS