Topic: FOX
I installed the fox package, and tried to build the sax_example_2.f90, but I got some errors message because the compiler can not find the modules or the libaries. The makefile is:
#
# Automagically generated by Approximatrix Simply Fortran
#
FC="C:\Program Files (x86)\Simply Fortran 2\mingw-w64\bin\gfortran.exe"
CC="C:\Program Files (x86)\Simply Fortran 2\mingw-w64\bin\gcc.exe"
AR="C:\Program Files (x86)\Simply Fortran 2\mingw-w64\bin\ar.exe"
TOUCH="C:\Program Files (x86)\Simply Fortran 2\fwin\wtouch.exe"
WRC="C:\PROGRA~2\SIMPLY~2\MINGW-~1\bin\windres.exe"
RM=rm -f
IDIR=-IC:/Users/jose.e.choy/AppData/Local/sfpm/32/include -IC:/Users/jose.e.choy/codigos/kml_for/../../AppData/Local/sfpm/32/include
# -I error: Directory C:\Program Files (x86)\Simply Fortran 2\mingw-w64\include\ does not exist
LDIR=-LC:/PROGRA~2/SIMPLY~2/MINGW-~1/lib/ -LC:/Users/jose.e.choy/AppData/Local/sfpm/32/lib -LC:/Users/jose.e.choy/codigos/kml_for/../../AppData/Local/sfpm/32/lib
SPECIALFLAGS=-g -m32 $(IDIR)
RCFLAGS=-O coff -F pe-i386
PRJ_FFLAGS=
PRJ_CFLAGS=
PRJ_LFLAGS=
FFLAGS=$(SPECIALFLAGS) $(PRJ_FFLAGS) -Jmodules
CFLAGS=-g -m32 $(IDIR) $(PRJ_CFLAGS)
"build\sax_example_2.o": ".\sax_example_2.f90"
$(FC) -c -o "build\sax_example_2.o" $(FFLAGS) ".\sax_example_2.f90"
"modules\m_handlers.mod": "build\sax_example_2.o"
$(TOUCH) -c "modules\m_handlers.mod"
clean: .SYMBOLIC
$(RM) "build\sax_example_2.o" "modules\m_handlers.mod"
$(RM) "Project.exe"
"Project.exe": "build\sax_example_2.o"
$(FC) -o "Project.exe" -static -m32 "build\sax_example_2.o" $(LDIR) $(PRJ_LFLAGS)
all: "Project.exe" .SYMBOLIC