I tried this, but the make in the MSYS shell doesn't work like make in the cmd window. Using -
Make \c/..../neko Or any other variation returns the error Make: *** No rule to make target 'neko'. Stop. What am I doing wrong here? Thanks, Lee -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Doug Currie Sent: 17 February 2006 13:48 To: Neko intermediate language mailing list Subject: Re: [Neko] Compiling Neko Friday, February 17, 2006, 7:43:39 AM, Lee McColl-Sylvester wrote: >[...] > I installed the MinGw32-make and modifiedthe MakeFile for windows > using this make version This required changingthe Lib**.so for > Neko.dll and replacing some *.o for *.c. The problem I nowhave is > quite late in the MakeFile. It currently errors here: > compiler: > (cd src; ${NEKO_EXEC}nekoml -v neko/Main.nml nekoml/Main.nml) > (cd src; ${NEKO_EXEC}nekoc -link ../bin/nekoc.n neko/Main) > (cd src; ${NEKO_EXEC} nekoc -link../bin/nekoml.n nekoml/Main) You could try compiler: cd src && ${NEKO_EXEC}nekoml -v neko/Main.nml nekoml/Main.nml cd src && ${NEKO_EXEC}nekoc -link ../bin/nekoc.n neko/Main cd src && ${NEKO_EXEC} nekoc -link../bin/nekoml.n nekoml/Main but I recommend installing MinGW/MSYS instead. http://www.mingw.org/download.shtml Regards, e -- Doug Currie Londonderry, NH -- Neko : One VM to run them all (http://nekovm.org) -- Neko : One VM to run them all (http://nekovm.org)
