Jeff,
My Simply Fortran version is 1.9 and build 467. I am not sure bout the full install, i just install the program alone only. Do i need any sub program to support it or something?
And, this is what is written in the makefile:
*****************************
#
# Automagically generated by Approximatrix Simply Fortran
#
FC="gnu\bin\gfortran.exe"
CC="gnu\bin\gcc.exe"
AR="gnu\bin\ar.exe"
TOUCH="gnu\bin\touch.exe"
RM=del
IDIR=
# -I error: Directory does not exist - gnu\include\
LDIR=
# -L error: Directory does not exist - gnu\lib\
SPECIALFLAGS=-g $(IDIR)
PRJ_FFLAGS=
PRJ_CFLAGS=
PRJ_LFLAGS=
FFLAGS=$(SPECIALFLAGS) $(PRJ_FFLAGS) -Jmodules
CFLAGS=-g $(IDIR) $(PRJ_CFLAGS)
build\hello.o: .\hello.f90
$(FC) -c -o build\hello.o $(FFLAGS) .\hello.f90
clean: .SYMBOLIC
$(RM) build\*.o
$(RM) modules\*.mod
$(RM) hello.exe
hello.exe: build\hello.o
$(FC) -o hello.exe $(PRJ_LFLAGS) -static build\hello.o $(LDIR)
all: hello.exe .SYMBOLIC
**********************************
Does it mean i need the gnu program or something? thanks in advance.
And you can see, that i cant even run a simple hello world program.