########################################################################
# Copyright (C) 1998-2011 Vix Technology, All rights reserved
#
# Module name   : makefile.pl
# Module type   : JATS Makefile
# Environment(s): JATS Build System
#
# Description   : Makefile for TexasInstrumentsMsp430
#
#......................................................................#
#
# exec build system
#
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
require "$ARGV[1]";

#
# Build platform definitions ..
#
Platform( '*' );

############################################################################
#   Define the source files
#
MakeNsisPackage( '*',
               '--Script=msp430.nsi' ,              # Script(s) to process
               '--Verbose=2' ,                      # Default = 2 0..4 allowed
               );

#.............................................................................
# Finally generate the makefile
#
MakefileGenerate();

#..  Successful termination
1;

