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