| 4350 |
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 androidBuilder
|
|
|
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 |
#
|
|
|
24 |
PackageFile ( '*', 'AndroidBuilder.pl', '--Subdir=tools/scripts' );
|
|
|
25 |
PackageFile ( '*', 'descpkg' );
|
|
|
26 |
|
|
|
27 |
#.............................................................................
|
|
|
28 |
# Finally generate the makefile
|
|
|
29 |
#
|
|
|
30 |
MakefileGenerate();
|
|
|
31 |
|
|
|
32 |
#.. Successful termination
|
|
|
33 |
1;
|