Hello all, My setup: -------------- OS: Windows XP MSPGCC installer release: 030506 MSPGCC version: 3.2.3 GNU make version: 3.79.1 MCU: MSP430F149
The problem is that GNU make utility "make" only the first command, and skip all the other one. In the following make command (see below), only the first command is executed. Notes: Before I call the make file, I always delete the 2 objects files (main.0 and utl.o), to force GNU make to make the 2 object files. ------------------------------------------------------------------------------- main.o : main.c msp430-gcc -mmcu=msp430x149 -g -O2 -c main.c utl.o : utl.c msp430-gcc -mmcu=msp430x149 -g -O2 -c utl.c ------------------------------------------------------------------------------- Is there something to do to make the GNU make utility execute all the commands ? Claude.