Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1139 dpurdie 1
# Copyright (C) 1998-2010 ERG Limited, All rights reserved
2
#
3
# Module name   : Makefile.pl
4
# Module type   : JATS Build File
5
# Environment(s): JATS Build System
6
#
7
# Description:    makefile.pl for package nsis_packager
8
#
9
#.........................................................................#
10
 
11
die "Usage: Makefile.pl rootdir Makelib.pl\n"
12
    unless( $#ARGV+1 >= 2 );
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;