Hi Ralf, Thank you. There were no tabs in the original makefile, it used two spaces instead. I've replaced them by tabs and commented one more conditional around line 120. When I make the project I've got the following message: MAKE: **** No rule to make target 'd:/micro/mspgcc/msp430/include/signal.h', needed by 'test.o'. Stop. Then I've modified files "depend.mak" and "environ.mak" replacing all "d:\micro\mspgcc" by "d:\tools\mspgcc". After that I have the following message: MAKE: *** Recursive variable 'PATH' references itself <eventially>. Stop. Then I've edited line 16 of the makefile, replacing PATH = $(AVR)\bin; $(PATH) by PATH = $(AVR)\bin Finally I've got a message as follows: msp430-gcc: installation problem, cannot exec 'cc1': No such file or directory MAKE: *** [test.o] Error 1. At that point I gave up again. Probably there is no need to continue, I'd rather use other projects for learning. Regards Alex
From: Ralf Guetlein <r...@we...> <https://sourceforge.net/mailarchive/message.php?msg_id=6158045> Re: MSPgcc examples - makefile 2003-09-29 01:09 Hi ALex, make relies on the tab character (ASCII 0x09) for indented lines. Some editors change those tabs to a number of spaces (ASCII 0x20). So after editing the makefile this error messages occur. Does it work when you use the original (unedited) makefile? Regards, Ralf Disclaimer: The information contained in this email is intended only for the use of the person(s) to whom it is addressed and may be confidential or contain legally privileged information. If you are not the intended recipient you are hereby notified that any perusal, use, distribution, copying or disclosure is strictly prohibited.