Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6930 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 manifest-certificates
8
#
9
#......................................................................#
10
#
11
# exec build system
12
#
13
require "$ARGV[1]";
14
 
15
 
16
# Platform configuration
17
Platform            ('*');
18
 
19
# Package the certificates for use
20
#   Never package keys
21
#   Never have the keys under version control
22
#   They are held in 1Password and have limited access
23
#   
24
PackageFile         ('*', '--DirTree=etc');
25
 
26
 
27
# Generate the makefile and complete
28
MakefileGenerate    ();
29
1;