Rev 4995 | Rev 7300 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# Copyright (c) VIX TECHNOLOGY (AUST) LTD## Module name : Makefile.pl# Environment(s): JATS## Description:# JATS makefile to build a static library###.........................................................................#die "Usage: Makefile.pl rootdir Makelib.pl\n"unless( $#ARGV+1 >= 2 );require "$ARGV[1]";## Build platform definitions ..#Platform ( '*' );############################################################################### Configuration filesSrc ( '*', "MyLib.h" );# project fsm filesAddSrcDir ( '*', "src" );AddIncDir ( '*', "inc" );Src ( '*', "File1.c" );Src ( '*', "File2.c" );# libraries to be madeLib ( '*' , 'MyLib', @OBJS );# headers to be installed outside the sandboxInstallHdr ( '*', @CHDRS ,"--Strip" );InstallLib ( '*', @LIBS );#.............................................................................# Finally generate the makefile#MakefileGenerate();#.. Successful termination1;