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....