| 6854 |
dpurdie |
1 |
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
|
|
|
2 |
#
|
|
|
3 |
# Module name : Makefile.pl
|
|
|
4 |
# Module type : Makefile system
|
|
|
5 |
# Environment(s): JATS
|
|
|
6 |
#
|
|
|
7 |
# Description: makefile.pl for VixArmv4iGeneric
|
|
|
8 |
#
|
|
|
9 |
#.........................................................................#
|
|
|
10 |
|
|
|
11 |
require "$ARGV[1]";
|
|
|
12 |
|
|
|
13 |
#
|
|
|
14 |
# Build platform definitions ..
|
|
|
15 |
#
|
|
|
16 |
Platform( '*' );
|
|
|
17 |
|
|
|
18 |
############################################################################
|
|
|
19 |
# Define the source files
|
|
|
20 |
# Package the installer, as an installer - in the package root directory
|
|
|
21 |
#
|
|
|
22 |
Src ( '*', "VixArmv4iGeneric_$ScmBuildVersionFull.msi" );
|
|
|
23 |
PackageFile ( '*' , "VixArmv4iGeneric_$ScmBuildVersionFull.msi" );
|
|
|
24 |
|
|
|
25 |
#.............................................................................
|
|
|
26 |
# Finally generate the makefile
|
|
|
27 |
#
|
|
|
28 |
MakefileGenerate();
|
|
|
29 |
|
|
|
30 |
#.. Successful termination
|
|
|
31 |
1;
|
|
|
32 |
|