Subversion Repositories DevTools

Rev

Go to most recent revision | 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
776 mhunt 9
SubDir( 'ant-abt' );
728 mhunt 10
SubDir( 'antwrap' );
724 buildadm 11
SubDir( 'config' );
814 mhunt 12
SubDir( 'generated' );
13
SubDir( 'util' );
724 buildadm 14
 
15
# target platforms
820 mhunt 16
Platform( '*' );
724 buildadm 17
 
18
# build flags and paths
19
 
20
# source types
21
 
22
# source files
23
 
24
# files to be generated
25
 
26
# additional rules
27
 
28
# Libraries to be built
29
#
30
 
31
# Libraries to be installed
32
#
33
 
34
# headers to be installed
35
 
36
# headers to be installed outside the sandbox
37
 
38
# libraries to be made
39
 
40
# programs to be made
41
 
42
# libraries to be installed into the 'export' lib directory
43
 
44
# libraries to be installed outside the sandbox
726 dpurdie 45
Src         ( '*', 'descpkg' );
46
PackageFile ( '*', 'descpkg' );
724 buildadm 47
 
48
#--- Finally generate the makefile
49
MakefileGenerate();