Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

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