Subversion Repositories DevTools

Rev

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

Rev 882 Rev 4129
Line 1... Line 1...
1
#..
1
#..
2
# Copyright (C) 1998-2000 ERG Transit Systems, All rights reserved
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
#
3
#
4
die "Usage: Makefile.pl rootdir Makelib.pl\n"
4
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
5
unless( $#ARGV+1 >= 2 );
-
 
6
require "$ARGV[1]";
5
require "$ARGV[1]";
7
 
6
 
8
# subdirectories to recurse
7
# subdirectories to recurse
9
SubDir( 'attend' );
8
SubDir( 'attend' );
10
SubDir( 'config' );
9
SubDir( 'config' );
11
SubDir( 'generated' );
10
SubDir( 'generated' );
12
 
11
 
13
# target platforms
12
# target platforms
14
Platform( '*' );
13
Platform( '*' );
15
 
14
 
16
# build flags and paths
-
 
17
 
-
 
18
# source types
-
 
19
 
-
 
20
# source files
-
 
21
 
-
 
22
# files to be generated
-
 
23
 
-
 
24
# additional rules
-
 
25
 
-
 
26
# Libraries to be built
-
 
27
#
-
 
28
 
-
 
29
# Libraries to be installed
-
 
30
#
-
 
31
 
-
 
32
# headers to be installed
-
 
33
 
-
 
34
# headers to be installed outside the sandbox
-
 
35
 
-
 
36
# libraries to be made
-
 
37
 
-
 
38
# programs to be made
-
 
39
 
-
 
40
# libraries to be installed into the 'export' lib directory
-
 
41
 
-
 
42
# libraries to be installed outside the sandbox
15
# libraries to be installed outside the sandbox
43
Src         ( '*', 'descpkg' );
16
Src         ( '*', 'descpkg' );
44
PackageFile ( '*', 'descpkg' );
17
PackageFile ( '*', 'descpkg' );
45
 
18
 
46
#--- Finally generate the makefile
19
#--- Finally generate the makefile