Subversion Repositories DevTools

Rev

Rev 7300 | Blame | Compare with Previous | Last modification | View Log | RSS feed

# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
#
# Module name   : Makefile.pl
# Environment(s): JATS
#
# Description:
#   JATS makefile to build a static library
#
#
#.........................................................................#

require "$ARGV[1]";

#
# Build platform definitions ..
#
Platform    ( '*' );

############################################################################
#
#
# Configuration files
Src         ( '*', "MyLib.h" );

# project fsm files
AddSrcDir   ( '*', "src" );
AddIncDir   ( '*', "inc" );
Src         ( '*', "File1.c" );
Src         ( '*', "File2.c" );

# libraries to be made
Lib         ( '*' , 'MyLib', @OBJS );

# headers to be installed outside the sandbox
InstallHdr  ( '*', @CHDRS ,"--Strip" );
InstallLib  ( '*', @LIBS );

#.............................................................................
# Finally generate the makefile
#
MakefileGenerate();

#..  Successful termination
1;