Subversion Repositories DevTools

Rev

Rev 2031 | Rev 2035 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2031 ghuddy 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
#
2033 dpurdie 7
# Description:    makefile.pl for package nsis_library
2031 ghuddy 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
 
2033 dpurdie 20
############################################################################
21
#   Package up all the files in a form suitable for NSIS
22
#   These are packaged such that NSIS will automatically search for them
23
#   To have NSIS automatically pick them up package:
24
#       DLLs into      : tools/bin/win32/nsis
25
#       .NSH files into: tools/scripts/nsis
26
#
27
Src ('*', 'nsODBC/nsODBC.dll' );
28
PackageFile ('*', 'nsODBC.dll', '--Dir=tools/bin/win32/nsis' );
29
 
2031 ghuddy 30
#.............................................................................
2033 dpurdie 31
#   Packaging definitions
32
#   Packaged in a manner that NSIS will not pick them up
2031 ghuddy 33
#
34
PackageFile ( '*', '--DirTree=System' );
35
PackageFile ( '*', '--DirTree=SearchAndReplace' );
36
 
37
#.............................................................................
38
# Finally generate the makefile
39
#
40
MakefileGenerate();
41
 
42
#..  Successful termination
43
1;