Subversion Repositories DevTools

Rev

Rev 724 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 724 Rev 726
Line 4... Line 4...
4
die "Usage: Makefile.pl rootdir Makelib.pl\n"
4
die "Usage: Makefile.pl rootdir Makelib.pl\n"
5
unless( $#ARGV+1 >= 2 );
5
unless( $#ARGV+1 >= 2 );
6
require "$ARGV[1]";
6
require "$ARGV[1]";
7
 
7
 
8
# subdirectories to recurse
8
# subdirectories to recurse
-
 
9
SubDir( 'automakerelease' );
9
SubDir( 'config' );
10
SubDir( 'config' );
10
SubDir( 'jwrap' );
11
SubDir( 'jwrap' );
11
SubDir( 'genbuild' );
12
SubDir( 'genbuild' );
-
 
13
SubDir( 'planner' );
12
SubDir( 'publish' );
14
SubDir( 'publish' );
13
 
15
 
14
# target platforms
16
# target platforms
15
Platform( 'WIN32', 'SOLARIS' );
17
Platform( 'WIN32', 'SOLARIS' );
16
 
18
 
Line 43... Line 45...
43
# programs to be made
45
# programs to be made
44
 
46
 
45
# libraries to be installed into the 'export' lib directory
47
# libraries to be installed into the 'export' lib directory
46
 
48
 
47
# libraries to be installed outside the sandbox
49
# libraries to be installed outside the sandbox
48
Script( '*', 'descpkg' );
50
Src         ( '*', 'descpkg' );
49
PackageProg( '*', 'descpkg', "--Dir=$Pbase", '--Set=A' );
51
PackageFile ( '*', 'descpkg' );
50
 
52
 
51
#--- Finally generate the makefile
53
#--- Finally generate the makefile
52
MakefileGenerate();
54
MakefileGenerate();