Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
4625 dpurdie 1
########################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
# Module name   : makefile.pl
4
# Module type   : JATS Makefile
5
# Environment(s): JATS Build System
6
#
7
# Description   : Makefile for generate_release_notes
8
#
9
#......................................................................#
10
#
11
# exec build system
12
#
4205 dpurdie 13
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
1086 rsolanki 14
require "$ARGV[1]";
15
 
4625 dpurdie 16
Platform('*');
1086 rsolanki 17
 
4625 dpurdie 18
PackageFile('*', '--DirTree=tools', '--Subdir=scripts', '--StripDir' );
1086 rsolanki 19
 
4625 dpurdie 20
#.............................................................................
21
# Finally generate the makefile
22
#
1086 rsolanki 23
MakefileGenerate();
24
 
4625 dpurdie 25
#..  Successful termination
26
1;
27
 
28