------- Comment #1 from dfranke at gcc dot gnu dot org 2007-04-16 11:02 -------
FX, +5 karma for this proposal :)
How about USE association? For example
$> cat a.f90
module a
[...]
end module
$> cat b.f90
[...]
USE a
[...]
$> gfortran -M a.f90
a.o a.mod: a.f90
$> gfortran -M b.f90
b.o: a.mod b.f90
(Don't have g95 to check its output)
--
dfranke at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dfranke at gcc dot gnu dot
| |org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31588