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
776 mhunt 9
SubDir( 'ant-abt' );
728 mhunt 10
SubDir( 'antwrap' );
726 dpurdie 11
SubDir( 'automakerelease' );
724 buildadm 12
SubDir( 'config' );
726 dpurdie 13
SubDir( 'planner' );
802 mhunt 14
SubDir( 'ripple' );
744 mhunt 15
SubDir( 'smtpsend' );
724 buildadm 16
 
17
# target platforms
776 mhunt 18
Platform( 'WIN32' );
724 buildadm 19
 
20
# build flags and paths
21
 
22
# source types
23
Src( '*', 'version.c' );
24
 
25
# source files
26
 
27
# files to be generated
28
 
29
# additional rules
30
InstallHdr('*',		'version.h' );
31
 
32
# Libraries to be built
33
#
34
Lib('*',		'version', 'version.o');
35
 
36
# Libraries to be installed
37
#
38
InstallLib('*', 	'version' );
39
 
40
# headers to be installed
41
 
42
# headers to be installed outside the sandbox
43
 
44
# libraries to be made
45
 
46
# programs to be made
47
 
48
# libraries to be installed into the 'export' lib directory
49
 
50
# libraries to be installed outside the sandbox
726 dpurdie 51
Src         ( '*', 'descpkg' );
52
PackageFile ( '*', 'descpkg' );
724 buildadm 53
 
54
#--- Finally generate the makefile
55
MakefileGenerate();