Subversion Repositories DevTools

Rev

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

#..
# Copyright (C) 1998-2000 ERG Transit Systems, All rights reserved
#
die "Usage: Makefile.pl rootdir Makelib.pl\n"
unless( $#ARGV+1 >= 2 );
require "$ARGV[1]";

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

############################################################################
#   Define the source files
#

AddSrcDir  ( '*'    , "$ProjectBase" );
Src        ( '*'    , "build.xml" );
MakeAnt    ( '*'    , "build.xml" ,
                    , "--Jar=build/jar/ant-apmcfg.jar"
                    , "--PackageBase"
           );

#.............................................................................
# Packaging definitions
#

PackageJar  ( '*', 'ant-apmcfg.jar', "--Dir=jar" );

# libraries to be installed outside the sandbox
Src         ( '*', 'ant-apmcfg.xml' );
PackageFile ( '*', 'ant-apmcfg.xml' );
Src         ( '*', 'descpkg' );
PackageFile ( '*', 'descpkg' );

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