Rev 7299 | Blame | Compare with Previous | Last modification | View Log | RSS feed
######################################################################### COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.# Module name : makefile.pl# Module type : JATS Makefile# Environment(s): JATS Build System## Description : Makefile for##......................................................................### exec build system#die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );require "$ARGV[1]";## Build platform definitions ..#Platform( 'JAVA' );############################################################################# Define the source files#Src ( '*' , "build.xml" );MakeAnt ( '*' , "build.xml" ,'--Debug',, "--Jar=java.build/jar/ReleaseManagerSelect.jar");#.............................................................................# Packaging definitions# Needs classes12.jar ojdbc6.jar jtds-1.2.8.jar or other to runPackageJar ( '*', 'ReleaseManagerSelect.jar', "--Dir=jar" );Src ( '*', 'DBI.pm' );PackageFile ( '*', 'DBI.pm', "--Subdir=jar" );#.............................................................................# Finally generate the makefile#MakefileGenerate();#.. Successful termination1;