Subversion Repositories DevTools

Rev

Rev 4129 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4129 dpurdie 1
########################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
#
4
# Module name   : makefile.pl
5
# Module type   : Makefile system
6
# Compiler(s)   : Perl
7
# Environment(s): jats
8
#
9
# Description   : Package up some of the required build artifacts 
10
#
11
#......................................................................#
12
 
13
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
726 dpurdie 14
require "$ARGV[1]";
15
 
820 mhunt 16
Platform( 'JAVA', '--OnlyDebug' );
726 dpurdie 17
 
814 mhunt 18
Src         ( '*', 'abtd.xml' );
19
PackageFile ( '*', 'abtd.xml', "--Subdir=etc" );
726 dpurdie 20
 
814 mhunt 21
Src         ( '*', 'abtlaunch.bat' );
22
PackageFile ( '*', 'abtlaunch.bat', "--Subdir=etc" );
726 dpurdie 23
 
814 mhunt 24
Src         ( '*', 'abtlaunch' );
25
PackageFile ( '*', 'abtlaunch', "--Subdir=etc" );
26
 
27
Src         ( '*', 'chainsaw.bat' );
28
PackageFile ( '*', 'chainsaw.bat', "--Subdir=etc" );
29
 
30
Src         ( '*', 'log4j.dtd' );
31
PackageFile ( '*', 'log4j.dtd', "--Subdir=etc" );
32
 
824 mhunt 33
Src         ( '*', 'buildtool.reg' );
34
PackageFile ( '*', 'buildtool.reg', "--Subdir=etc" );
822 mhunt 35
 
824 mhunt 36
Src         ( '*', 'Sc.Exe' );
37
PackageFile ( '*', 'Sc.Exe', "--Subdir=etc" );
38
 
39
Src         ( '*', 'servicehelper.bat' );
40
PackageFile ( '*', 'servicehelper.bat', "--Subdir=etc" );
41
 
912 mhunt 42
Src         ( '*', 'XYNTService.exe' );
43
PackageFile ( '*', 'XYNTService.exe', "--Subdir=etc" );
824 mhunt 44
 
912 mhunt 45
Src         ( '*', 'XYNTService.ini' );
46
PackageFile ( '*', 'XYNTService.ini', "--Subdir=etc" );
47
 
824 mhunt 48
Src         ( '*', 'win32serviceinstall.bat' );
49
PackageFile ( '*', 'win32serviceinstall.bat', "--Subdir=etc" );
50
 
848 dpurdie 51
Src         ( '*', 'buildtool' );
52
PackageFile ( '*', 'buildtool', "--Subdir=etc/init.d" );
53
 
4123 dpurdie 54
Src         ( '*', 'buildtool.conf' );
55
PackageFile ( '*', 'buildtool.conf', "--Subdir=etc/init.d" );
56
 
848 dpurdie 57
Src         ( '*', 'gen_escrow.pl' );
58
PackageFile ( '*', 'gen_escrow.pl', "--Subdir=etc" );
59
 
726 dpurdie 60
MakefileGenerate();