| 6868 |
dpurdie |
1 |
########################################################################
|
|
|
2 |
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
|
|
|
3 |
# Module name : makefile.pl
|
|
|
4 |
# Module type : JATS Makefile
|
|
|
5 |
# Environment(s): JATS Build System
|
|
|
6 |
#
|
|
|
7 |
# Description : Makefile for VIXcentos7LTS_VMcfg
|
|
|
8 |
#
|
|
|
9 |
#......................................................................#
|
|
|
10 |
#
|
|
|
11 |
# exec build system
|
|
|
12 |
#
|
|
|
13 |
require "$ARGV[1]";
|
|
|
14 |
|
|
|
15 |
#
|
|
|
16 |
# Build platform definitions ..
|
|
|
17 |
#
|
|
|
18 |
Platform( '*' );
|
|
|
19 |
|
|
|
20 |
############################################################################
|
|
|
21 |
# Define the source files
|
|
|
22 |
#
|
|
|
23 |
Src ('*', 'configureVM.sh');
|
|
|
24 |
#
|
|
|
25 |
# Create a Debian Package around the files
|
|
|
26 |
# Use a script to invoke the provided builder scripts
|
|
|
27 |
#
|
|
|
28 |
MakeDebianPackage ('*', '--Script=PackageApp.pl' );
|
|
|
29 |
|
|
|
30 |
#.............................................................................
|
|
|
31 |
# Packaging definitions
|
|
|
32 |
#
|
|
|
33 |
#
|
|
|
34 |
PackageFile ( '*' , 'descpkg' );
|
|
|
35 |
|
|
|
36 |
#.............................................................................
|
|
|
37 |
# Finally generate the makefile
|
|
|
38 |
#
|
|
|
39 |
MakefileGenerate();
|
|
|
40 |
|
|
|
41 |
#.. Successful termination
|
|
|
42 |
1;
|