Subversion Repositories DevTools

Rev

Rev 6177 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6177 dpurdie 1
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
227 dpurdie 2
#
3
# Module name   : Makefile.pl
4995 dpurdie 4
# Environment(s): JATS
227 dpurdie 5
#
6
# Description:
7
#   JATS makefile to build a static library
8
#
9
#
10
#.........................................................................#
11
 
12
require "$ARGV[1]";
13
 
14
#
15
# Build platform definitions ..
16
#
17
Platform    ( '*' );
18
 
19
############################################################################
20
#
21
#
22
# Configuration files
23
Src         ( '*', "MyLib.h" );
24
 
25
# project fsm files
26
AddSrcDir   ( '*', "src" );
27
AddIncDir   ( '*', "inc" );
28
Src         ( '*', "File1.c" );
29
Src         ( '*', "File2.c" );
30
 
31
# libraries to be made
32
Lib         ( '*' , 'MyLib', @OBJS );
33
 
34
# headers to be installed outside the sandbox
35
InstallHdr  ( '*', @CHDRS ,"--Strip" );
36
InstallLib  ( '*', @LIBS );
37
 
38
#.............................................................................
39
# Finally generate the makefile
40
#
41
MakefileGenerate();
42
 
43
#..  Successful termination
44
1;
45