| 7556 |
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 packageDirTemplate
|
|
|
8 |
#
|
|
|
9 |
# This is a sample build.pl amd makefile.pl to package up an entire
|
|
|
10 |
# directory into dpkg_archive
|
|
|
11 |
#
|
|
|
12 |
#......................................................................#
|
|
|
13 |
#
|
|
|
14 |
# exec build system
|
|
|
15 |
#
|
|
|
16 |
require "$ARGV[1]";
|
|
|
17 |
|
|
|
18 |
Platform( '*' );
|
|
|
19 |
|
|
|
20 |
############################################################################
|
|
|
21 |
# Packaging definitions
|
|
|
22 |
# The entire directory will be packaged
|
|
|
23 |
# See MASS-0166 for deatils and other options
|
|
|
24 |
#
|
|
|
25 |
PackageDir ('*', '--DirTree=dir1', '--Subdir=pkg/output1' );
|
|
|
26 |
|
|
|
27 |
#.............................................................................
|
|
|
28 |
# Finally generate the makefile
|
|
|
29 |
#
|
|
|
30 |
MakefileGenerate();
|
|
|
31 |
|
|
|
32 |
#.. Successful termination
|
|
|
33 |
1;
|
|
|
34 |
|