1
1

fortran: remove warning that compiling the "mpi" module takes a long time

Since we only builds the "small" size of the "mpi" module any more, it
does not take a long time to compile.  So remove the warning that is
emitted.

Also remove a vestage of Windows support that was leftover in the
Fortran area (i.e., building mpi.obj).

This commit was SVN r31374.
Этот коммит содержится в:
Jeff Squyres 2014-04-11 21:06:43 +00:00
родитель d2d28710ba
Коммит ed32143dc5

Просмотреть файл

@ -118,33 +118,13 @@ $(nodist_libmpi_usempi_la_SOURCES): fortran_kinds.sh
# list this here (i.e., "mpi-f90-interfaces.h" is included in
# mpi.F90).
# Print a warning indicating that compiling mpi.F90 can take a while.
# The only way to do this portably is to have our own rules for mpi.o
# and mpi.obj (having a "fake" target that just has echo statement in
# it may trigger mpi.o|obj to be rebuilt because the fake name doesn't
# exist; there aren't good portable ways to indicate that the target
# name is fake and should never exist).
# Note the "-I." in the commands below. This is because mpi.F90
# Note the "-I." in the command below. This is because mpi.F90
# includes mpi-f90-interfaces.h, which will be in the build tree
# (i.e., the current directory) because it is generated.
mpi.o: mpi.F90 mpi-f90-interfaces.h
@echo "***************************************************************"
@echo "* Compiling the mpi.F90 file may take a few minutes."
@echo "* This is quite normal -- do not be alarmed if the compile"
@echo "* process seems to 'hang' at this point for several minutes."
@echo "***************************************************************"
$(FCCOMPILE) -c -I. -o $@ $(FCFLAGS_f90) $<
mpi.obj: mpi.F90 mpi-f90-interfaces.h
@echo "***************************************************************"
@echo "* Compiling the mpi.F90 file may take a few minutes."
@echo "* This is quite normal -- do not be alarmed if the compile"
@echo "* process seems to 'hang' at this point for several minutes."
@echo "***************************************************************"
$(FCCOMPILE) -c -I. -o $@ $(FCFLAGS_f90) `$(CYGPATH_W) '$<'`
BUILT_SOURCES = mpi-f90-interfaces.h
endif