Topic: Error(E32): Opening file (Makefile): No such file or directory

Sorry for my english (i'm French...)
My problem is :

"Open Watcom Make Version 1.9 (Built on Feb  4 2013)
Portions Copyright (c) 1988-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See http://www.openwatcom.org/ for details.
Error(E32): Opening file (Makefile): No such file or directory
Error(E02): Make execution terminated "

and the makefile is :

# Automagically generated by Approximatrix Simply Fortran
#
FC="C:\Program Files (x86)\Simply Fortran\mingw-w64\bin\gfortran.exe"
CC="C:\Program Files (x86)\Simply Fortran\mingw-w64\bin\gcc.exe"
AR="C:\Program Files (x86)\Simply Fortran\mingw-w64\bin\ar.exe"
TOUCH="C:\Program Files (x86)\Simply Fortran\fwin\wtouch.exe"
WRC="C:\PROGRA~2\SIMPLY~1\MINGW-~1\bin\windres.exe"
RM=del

IDIR=
# -I error: Directory C:\Program Files (x86)\Simply Fortran\mingw-w64\include\ does not exist
# -I error: Directory \32\include does not exist

LDIR=-LC:/PROGRA~2/SIMPLY~1/MINGW-~1/lib/
# -L error: Directory \32\lib does not exist


SPECIALFLAGS=-g -m32 $(IDIR)

RCFLAGS=-O coff -F pe-i386

PRJ_FFLAGS=
PRJ_CFLAGS=
PRJ_LFLAGS=

FFLAGS=$(SPECIALFLAGS)  $(PRJ_FFLAGS) -J"D:/B-Logiciels/A-Developpement-TERESE/Terese 2.1.6 - F95/sources"

CFLAGS=-g -m32  $(IDIR) $(PRJ_CFLAGS)

"..\sources\example.o": ".\example.f90"
    $(FC) -c -o "..\sources\example.o" $(FFLAGS) ".\example.f90"

clean: .SYMBOLIC
    $(RM) "..\sources\example.o"
    $(RM) "example.exe"

"example.exe":  "..\sources\example.o"
    $(FC) -o "example.exe" -static -m32 "..\sources\example.o" $(LDIR) $(PRJ_LFLAGS)

all: "example.exe" .SYMBOLIC

can you help me to find the good directory for the make file...

Thank you....

Re: Error(E32): Opening file (Makefile): No such file or directory

The makefile should be created in the same directory as your project.  If you've created a project, added your ../sources/example.f90 source file to it, and clicked "Build Now!" in the Build menu, a makefile should be created in that same directory as your project.  I would suggest using Windows Explorer to navigate to that directory to see if there is anything odd about the location (I'm guessing there isn't, though).

If you could tell us the full path to your project file, it would be helpful.  There could be a path-related bug in Simply Fortran.

Jeff Armstrong
Approximatrix, LLC

Re: Error(E32): Opening file (Makefile): No such file or directory

full path project directory :
D:\B-Logiciels\A-Developpement-TERESE\Terese 2.1.6 - F95\sources

the project, and the  fortran 's file are in this directory
the  makefile is created in this directory...

Re: Error(E32): Opening file (Makefile): No such file or directory

Would you mind emailing your project file (ending in .prj) to me at jeffrey.armstrong@approximatrix.com?  I'd like to sort out why you're getting the error.  I don't need any of your source files, so there is no need to include those.

Also, which version of Simply Fortran are you working with?

Jeff Armstrong
Approximatrix, LLC