Subversion Repositories DevTools

Rev

Rev 2031 | Rev 2035 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2031 Rev 2033
Line 2... Line 2...
2
#
2
#
3
# Module name   : Makefile.pl
3
# Module name   : Makefile.pl
4
# Module type   : JATS Build File
4
# Module type   : JATS Build File
5
# Environment(s): JATS Build System
5
# Environment(s): JATS Build System
6
#
6
#
7
# Description:    makefile.pl for package nsis_packager
7
# Description:    makefile.pl for package nsis_library
8
#
8
#
9
#.........................................................................#
9
#.........................................................................#
10
 
10
 
11
die "Usage: Makefile.pl rootdir Makelib.pl\n"
11
die "Usage: Makefile.pl rootdir Makelib.pl\n"
12
    unless( $#ARGV+1 >= 2 );
12
    unless( $#ARGV+1 >= 2 );
Line 15... Line 15...
15
#
15
#
16
# Build platform definitions ..
16
# Build platform definitions ..
17
#
17
#
18
Platform( '*' );
18
Platform( '*' );
19
 
19
 
-
 
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
 
20
#.............................................................................
30
#.............................................................................
21
# Packaging definitions
31
#   Packaging definitions
-
 
32
#   Packaged in a manner that NSIS will not pick them up
22
#
33
#
23
PackageFile ( '*', '--DirTree=System' );
34
PackageFile ( '*', '--DirTree=System' );
24
PackageFile ( '*', '--DirTree=SearchAndReplace' );
35
PackageFile ( '*', '--DirTree=SearchAndReplace' );
25
PackageFile ( '*', 'descpkg' );
-
 
26
 
36
 
27
#.............................................................................
37
#.............................................................................
28
# Finally generate the makefile
38
# Finally generate the makefile
29
#
39
#
30
MakefileGenerate();
40
MakefileGenerate();