Displaying 1 result from an estimated 1 matches for "fcsourc".
Did you mean:
fbsource
2006 Oct 09
1
Problem building a DLL from Fortran 90 source under Windows (with solution)
...M) $^ | $(SED) -n 's/^........ [BCDRT] _/ /p' >> $*.def
The dependencies list is constructed in the MakeDll file that contains
the following:
CFSOURCES=$(wildcard -f *.c *.f *.f90 *.f95)
CSOURCES=$(wildcard -f *.c)
CXXSOURCES=$(wildcard -f *.cc *.cpp *.C)
FSOURCES=$(wildcard -f *.f)
FCSOURCES=$(wildcard -f *.f90 *.f95)
OBJSA=$(foreach i,$(CSOURCES) $(FSOURCES) $(CXXSOURCES),$(basename $i).o)
Observe that the neither CFSOURCES nor FCSOURCES in included in OBJSA,
i.e. an object file made from a f90 source never becomes part of
dependencies. If I add $(FCSOURCES) to OBJSA, the DLL gets...