Subversion Repositories DevTools

Rev

Rev 4123 | 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
# Module type   : Makefile system
# Compiler(s)   : Perl
# Environment(s): jats
#
# Description   : Package up some of the required build artifacts 
#
#......................................................................#

die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
require "$ARGV[1]";

Platform( 'JAVA', '--OnlyDebug' );

Src         ( '*', 'abtd.xml' );
PackageFile ( '*', 'abtd.xml', "--Subdir=etc" );

Src         ( '*', 'abtlaunch.bat' );
PackageFile ( '*', 'abtlaunch.bat', "--Subdir=etc" );

Src         ( '*', 'abtlaunch' );
PackageFile ( '*', 'abtlaunch', "--Subdir=etc" );

Src         ( '*', 'chainsaw.bat' );
PackageFile ( '*', 'chainsaw.bat', "--Subdir=etc" );

Src         ( '*', 'log4j.dtd' );
PackageFile ( '*', 'log4j.dtd', "--Subdir=etc" );

Src         ( '*', 'buildtool.reg' );
PackageFile ( '*', 'buildtool.reg', "--Subdir=etc" );

Src         ( '*', 'Sc.Exe' );
PackageFile ( '*', 'Sc.Exe', "--Subdir=etc" );

Src         ( '*', 'servicehelper.bat' );
PackageFile ( '*', 'servicehelper.bat', "--Subdir=etc" );

Src         ( '*', 'XYNTService.exe' );
PackageFile ( '*', 'XYNTService.exe', "--Subdir=etc" );

Src         ( '*', 'XYNTService.ini' );
PackageFile ( '*', 'XYNTService.ini', "--Subdir=etc" );

Src         ( '*', 'win32serviceinstall.bat' );
PackageFile ( '*', 'win32serviceinstall.bat', "--Subdir=etc" );

Src         ( '*', 'buildtool' );
PackageFile ( '*', 'buildtool', "--Subdir=etc/init.d" );

Src         ( '*', 'buildtool.conf' );
PackageFile ( '*', 'buildtool.conf', "--Subdir=etc/init.d" );

Src         ( '*', 'gen_escrow.pl' );
PackageFile ( '*', 'gen_escrow.pl', "--Subdir=etc" );

MakefileGenerate();