From ebe740f9e8f8a803b8873f2a40406828bf308d84 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sat, 15 Dec 2012 15:09:13 +0100 Subject: [PATCH] Add simple makefile build system --- auto_debuild.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/auto_debuild.py b/auto_debuild.py index 4c7e10e..b409bd1 100755 --- a/auto_debuild.py +++ b/auto_debuild.py @@ -160,10 +160,17 @@ def pythonRules(config): ] return r +def makefileRules(config): + r = RulesFile() + r.dh += ["--buildsystem=makefile"] # makefile does the least possible harm + return r + def noneRules(config): r = RulesFile() - r.dh += ["--buildsystem=makefile"] # makefile does the last possible harm + r.dh += ["--buildsystem=makefile"] # makefile does the least possible harm + r.rules['auto_configure'] = [] r.rules['auto_build'] = [] + r.rules['auto_clean'] = [] return r # build systems @@ -171,6 +178,7 @@ buildSystems = { 'cmake': BuildSystem(cmakeRules, ["cmake"]), 'automake': BuildSystem(automakeRules), 'python': BuildSystem(pythonRules, ["python-setuptools"], ["${python:Depends}"]), + 'makefile': BuildSystem(makefileRules), 'none': BuildSystem(noneRules), } -- 2.30.2