Merge pull request #212 from DOCGroup/jwillemsen-patch-1
[MPC.git] / modules / MakeProjectBase.pm
blob13bfebb9c288991f2587aeea18df196ea986e124
1 package MakeProjectBase;
3 # ************************************************************
4 # Description : A Make Project base module
5 # Author : Chad Elliott
6 # Create Date : 1/4/2005
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
14 use MakePropertyBase;
16 use vars qw(@ISA);
17 @ISA = qw(MakePropertyBase);
19 # ************************************************************
20 # Subroutine Section
21 # ************************************************************
23 sub get_builtin_output {
24 #my($self, $input) = @_;
25 return ['$@'];
28 sub dollar_special {
29 #my $self = shift;
30 return 1;
34 sub sort_files {
35 #my $self = shift;
36 return (defined $ENV{MPC_ALWAYS_SORT});
40 sub project_file_prefix {
41 #my $self = shift;
42 return 'Makefile.';