Subversion Repositories DevTools

Rev

Rev 1139 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6419 dpurdie 1
########################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
# Module name   : makefile.pl
4
# Module type   : JATS Makefile
1139 dpurdie 5
# Environment(s): JATS Build System
6
#
6419 dpurdie 7
# Description   : Makefile for nsis_packager
1139 dpurdie 8
#
6419 dpurdie 9
#......................................................................#
10
#
11
# exec build system
12
#
1139 dpurdie 13
require "$ARGV[1]";
14
 
15
#
16
# Build platform definitions ..
17
#
18
Platform( '*' );
19
 
20
#.............................................................................
21
# Packaging definitions
22
#
23
PackageFile ( '*', '--DirTree=gbe' );
24
PackageFile ( '*', '--DirTree=tools' );
25
PackageFile ( '*', '--DirTree=etc' );
26
PackageFile ( '*', '--DirTree=examples' );
27
PackageFile ( '*', 'descpkg' );
28
 
29
#.............................................................................
30
# Finally generate the makefile
31
#
32
MakefileGenerate();
33
 
34
#..  Successful termination
35
1;