=============================================================== Makefile for building MSP Code Examples in command line environement using the GCC Open Source Compiler for MSP430 Refer to MSP430 GCC User's Guide http://www.ti.com/lit/pdf/slau646 Download GCC standalone package: http://www.ti.com/tool/msp430-gcc-opensource =============================================================== Makefile usage: make DEVICE= EXAMPLE= e.g. DEVICE=MSP430F5529 EXAMPLE=MSP430F55xx_adc_01 Debug with GDB: make debug DEVICE= EXAMPLE= * Before connecting to target, GDB Agent needs to be running. * Refer to MSP430 GCC User's Guide for how to use GDB: http://www.ti.com/lit/pdf/slau646 =============================================================== This Makefile assumes GCC standalong package is installed at the default directory. To specify a different GCC install path, use: make DEVICE= EXAMPLE= \ GCC_DIR= If using GCC installed inside Code Composer Studio, specify both the GCC root and the MSP430 include path, make DEVICE= EXAMPLE= \ GCC_DIR= \ GCC_MSP_INC_DIR= ===============================================================