summaryrefslogtreecommitdiff
path: root/morphlib/buildsystem.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/buildsystem.py')
-rw-r--r--morphlib/buildsystem.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 3969bddc..0ac27387 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -31,10 +31,16 @@ class BuildSystem(object):
'''
+ def __init__(self):
+ self.configure_commands = []
+ self.build_commands = []
+ self.test_commands = []
+ self.install_commands = []
+
def used_by_project(self, srcdir):
'''Does project at ``srcdir`` use this build system?'''
raise NotImplementedError() # pragma: no cover
-
+
class ManualBuildSystem(BuildSystem):