Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
4937 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 AndroidStudioBuilder
8
#
9
#......................................................................#
10
#
11
# exec build system
12
#
13
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
14
require "$ARGV[1]";
15
 
16
#
17
# Build platform definitions ..
18
#
19
Platform( '*' );
20
 
21
############################################################################
22
# Packaging definitions
23
#
5425 dpurdie 24
PackageFile ( '*', 'AndroidBuilder.pl',         '--Subdir=tools/scripts' );
25
PackageFile ( '*', 'init.gradle',               '--Subdir=tools/scripts' );
26
PackageFile ( '*', 'UtfFilter_androidStudio.pm','--Subdir=tools/scripts' );
4937 dpurdie 27
 
28
#.............................................................................
29
# Finally generate the makefile
30
#
31
MakefileGenerate();
32
 
33
#..  Successful termination
34
1;