Subversion Repositories gelsvn

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
package MakeProjectBase;
2
 
3
# ************************************************************
4
# Description   : A Make Project base module
5
# Author        : Chad Elliott
6
# Create Date   : 1/4/2005
7
# ************************************************************
8
 
9
# ************************************************************
10
# Pragmas
11
# ************************************************************
12
 
13
use strict;
14
 
15
# ************************************************************
16
# Subroutine Section
17
# ************************************************************
18
 
19
sub dollar_special {
20
  #my($self) = shift;
21
  return 1;
22
}
23
 
24
 
25
sub sort_files {
26
  #my($self) = shift;
27
  if (defined $ENV{MPC_ALWAYS_SORT}) {
28
    return 1;
29
  }
30
  else {
31
    return 0;
32
  }
33
}
34
 
35
 
36
sub project_file_prefix {
37
  #my($self) = shift;
38
  return 'Makefile.';
39
}
40
 
41
1;