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
882 mhunt 9
SubDir( 'attend' );
724 buildadm 10
SubDir( 'config' );
814 mhunt 11
SubDir( 'generated' );
724 buildadm 12
 
13
# target platforms
820 mhunt 14
Platform( '*' );
724 buildadm 15
 
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
726 dpurdie 43
Src         ( '*', 'descpkg' );
44
PackageFile ( '*', 'descpkg' );
724 buildadm 45
 
46
#--- Finally generate the makefile
47
MakefileGenerate();