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
4
# Module type   : Makefile system
4995 dpurdie 5
# Environment(s): JATS
227 dpurdie 6
#
7
# Description:    makefile.pl template example
8
#
9
#.........................................................................#
10
 
11
require "$ARGV[1]";
12
 
13
#
14
# Build platform definitions ..
15
#
16
Platform( '*' );
17
 
18
############################################################################
19
#   Define the source files
20
#
21
Src        ( '*'    , "source1.c" );
22
Src        ( '*'    , "source2.c" );
23
 
24
#.............................................................................
25
# Packaging definitions
26
#
27
PackageHdr  ( '*', @CHDRS ,"--Strip" );
28
 
29
#..
30
#
31
PackageFile ( '*'   , 'descpkg' );
32
 
33
#.............................................................................
34
# Finally generate the makefile
35
#
36
MakefileGenerate();
37
 
38
#..  Successful termination
39
1;
40