I'm having problems making on Windows XP.  Assuming c:\mingw32\bin is in
my path I get this output:

 

C:\fossil\fossil>mingw32-make -f .\makefile.w32

gcc -g -O2 -o translate ./src/translate.c

./translate ./src/add.c >add_.c

'.' is not recognized as an internal or external command,

operable program or batch file.

mingw32-make: *** [add_.c] Error 1

 

If I change the slashes to backslashes in main.mk:

 

add_.c:     $(SRCDIR)/add.c translate

      ./translate $(SRCDIR)/add.c >add_.c

 

Like this:

 

add_.c:     $(SRCDIR)/add.c translate

      .\translate $(SRCDIR)\add.c >add_.c

 

It gets past the translate step for add.c, but will have the same
problem on every file and also when makeheaders is called.  I really
don't want to be in the business of modifying the .mk file and I am
assuming that drh doesn't have this problem when building.  Any help?

 

RW

 

Ron Wilson, Engineering Project Lead

(o) 434.455.6453, (m) 434.851.1612, www.harris.com

 

 HARRIS CORPORATION   |   RF Communications Division
assuredcommunications(tm)


NOTICE:  This e-mail transmission (and any of its attachments) may
contain confidential, proprietary and/or privileged information.  The
sender intends this transmission only for the designated recipient(s).
If you are not a designated recipient (or authorized to receive for a
designated recipient), you are hereby notified that the disclosure,
copying, distribution or use of any of the information contained in this
transmission is strictly prohibited.  If you have received this
transmission in error, please destroy this message, delete any copies
which may exist on your system and notify the sender immediately.  Thank
you.

 

 

<<image001.png>>

_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to