Subversion Repositories DevTools

Rev

Rev 227 | Rev 4543 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4466 dpurdie 1
########################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
# Module name   : makefile.pl
4
# Module type   : JATS Makefile
5
# Environment(s): JATS Build System
227 dpurdie 6
#
4466 dpurdie 7
# Description   : Makefile for 
227 dpurdie 8
#
4466 dpurdie 9
#......................................................................#
227 dpurdie 10
#
4466 dpurdie 11
# exec build system
12
#
13
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
227 dpurdie 14
require "$ARGV[1]";
15
 
16
#
17
# Build platform definitions ..
18
#
4466 dpurdie 19
Platform( '*' );
227 dpurdie 20
 
21
 
22
############################################################################
23
#   Define the source files
24
#
25
 
26
#.............................................................................
27
# Packaging definitions
28
#
29
 
30
Src         ( '*', 'DBI.pm' );
31
PackageFile ( '*', 'DBI.pm', "--Subdir=jar" );
32
 
33
#.............................................................................
34
# Finally generate the makefile
35
#
36
MakefileGenerate();
37
 
38
#..  Successful termination
39
1;
40
 
41