summaryrefslogtreecommitdiff
path: root/modules/MakePropertyBase.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2010-03-22 12:38:45 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2010-03-22 12:38:45 +0000
commit6c410b9918eb7e185b825f9ef9af96e45562ed86 (patch)
treeacd6831f8d1a8b30c512be2a8f6480d228acdb6c /modules/MakePropertyBase.pm
parentb47edb0428d6ec22e955e10ba1904cdc5a8c99e6 (diff)
downloadMPC-6c410b9918eb7e185b825f9ef9af96e45562ed86.tar.gz
ChangeLogTag: Mon Mar 22 00:47:56 UTC 2010 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/MakePropertyBase.pm')
-rw-r--r--modules/MakePropertyBase.pm33
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/MakePropertyBase.pm b/modules/MakePropertyBase.pm
new file mode 100644
index 00000000..34ffaaf3
--- /dev/null
+++ b/modules/MakePropertyBase.pm
@@ -0,0 +1,33 @@
+package MakePropertyBase;
+
+# ************************************************************
+# Description : A Make property base module
+# Author : Chad Elliott
+# Create Date : 3/9/2010
+# ************************************************************
+
+# ************************************************************
+# Pragmas
+# ************************************************************
+
+use strict;
+
+# ************************************************************
+# Subroutine Section
+# ************************************************************
+
+sub get_properties {
+ my $self = shift;
+
+ ## Get the base class properties and add the properties that we
+ ## support.
+ my $props = $self->Creator::get_properties();
+
+ ## All projects that use this base class are 'make' based.
+ $$props{'make'} = 1;
+
+ return $props;
+}
+
+
+1;