Thanks again, progress at last.
Text from bash console.
Yes, it was picking up a different version of make, connected with Delphi.
with comments
bash.exe"-3.1$ make -v
MAKE Version 5.4 Copyright (c) 1987, 2010 Embarcadero Technologies, Inc.
the one I want is here
bash.exe"-3.1$ C:/MinGW/msys/1.0/bin/make -v
GNU Make 3.81
some time later…tell bash where it is (and also the other stuff it needs)
the " are needed .
bash.exe"-3.1$ export PATH=“C:\MinGW\msys\1.0\bin”
check that PATH is now correctly defined
bash.exe"-3.1$ export
declare -x !::="::\"
declare -x ALLUSERSPROFILE=“C:\ProgramData”
declare -x APPDATA=“C:\Users\Andy\AppData\Roaming”
declare -x COMMONPROGRAMFILES=“C:\Program Files (x86)\Common Files”
declare -x COMMONPROGRAMFILES(X86)=“C:\Program Files (x86)\Common Files”
declare -x COMMONPROGRAMW6432=“C:\Program Files\Common Files”
declare -x COMPUTERNAME=“ANDY-PC”
declare -x COMSPEC=“C:\WINDOWS\system32\cmd.exe”
declare -x FP_NO_HOST_CHECK=“NO”
declare -x HOMEDRIVE=“C:”
declare -x HOMEPATH="\"
declare -x IBREDISTDIR=“C:\Users\Public\Documents\InterBase\redist\InterBa
seXE3”
declare -x LOCALAPPDATA=“C:\Users\Andy\AppData\Local”
declare -x LOGONSERVER="\\ANDY-PC"
declare -x NUMBER_OF_PROCESSORS=“4”
declare -x OLDPWD
declare -x OS=“Windows_NT”
declare -x PATH=“C:\MinGW\msys\1.0\bin”
declare -x PATHEXT=".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.P
YW"
declare -x PROCESSOR_ARCHITECTURE=“x86”
declare -x PROCESSOR_ARCHITEW6432=“AMD64”
declare -x PROCESSOR_IDENTIFIER=“Intel64 Family 6 Model 58 Stepping 9, GenuineIn
tel”
declare -x PROCESSOR_LEVEL=“6”
declare -x PROCESSOR_REVISION=“3a09”
declare -x PROGRAMDATA=“C:\ProgramData”
declare -x PROGRAMFILES=“C:\Program Files (x86)”
declare -x PROGRAMFILES(X86)=“C:\Program Files (x86)”
declare -x PROGRAMW6432=“C:\Program Files”
declare -x PSMODULEPATH=“C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules
\”
declare -x PUBLIC=“C:\Users\Public”
declare -x PWD="/c/OwlProgram-develop/OwlProgram-develop"
declare -x SESSIONNAME=“Console”
declare -x SHLVL=“1”
declare -x SYSTEMDRIVE=“C:”
declare -x SYSTEMROOT=“C:\WINDOWS”
declare -x TEMP="/tmp"
declare -x TERM=“cygwin”
declare -x TMP="/tmp"
declare -x USERDOMAIN=“Andy-PC”
declare -x USERDOMAIN_ROAMINGPROFILE=“Andy-PC”
declare -x USERNAME=“Andy”
declare -x USERPROFILE=“C:\Users\Andy”
declare -x VS120COMNTOOLS=“C:\Program Files (x86)\Microsoft Visual Studio 12.0
\Common7\Tools\”
declare -x VS80COMNTOOLS=“C:\Program Files (x86)\Microsoft Visual Studio 8\Co
mmon7\Tools\”
declare -x WINDIR=“C:\WINDOWS”
now see if it actually works…it does
bash.exe"-3.1$ make libs
/bin/sh: emcc: command not found
make[1]: *** [Build/web/ColourScreenPatch.o] Error 127
make: *** [libs] Error 2
So that’s as you predicted, just an error for emcc
EMCC is installed though, so would be good to get that working.
I put FirmwareSender.exe in the OwlProgram-develop\Tools firectory,
because “Makefile” has the following line in it
FIRMWARESENDER ?= Tools/FirmwareSender