1
1

Remove an extra -o $@ that doesn't seem to be necessary, and actually

confuses the Lahey compiler (because it doesn't want to name a module
mpi_kinds.ompi_module).  We shouldn't need this because we're already
touching a sentinel file (mpi_kinds.ompi_module) for make
dependencies; we don't need the compiler-generated module to be named
that. 

This commit was SVN r8571.
Этот коммит содержится в:
Jeff Squyres 2005-12-20 21:43:04 +00:00
родитель 8c1027d974
Коммит ce6639d3ef

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

@ -136,7 +136,7 @@ mpi-f90-interfaces.h:
$(libmpi_f90_a_SOURCES) $(nodist_libmpi_f90_a_SOURCES): mpi_kinds.ompi_module
mpi_kinds.ompi_module: mpi_kinds.f90
$(FCCOMPILE) -c -o $@ $(FCFLAGS_f90) $<
$(FCCOMPILE) -c $(FCFLAGS_f90) $<
@ touch mpi_kinds.ompi_module
# Unbelievably, some versions of sh (cough cough Solaris 9 cough