Ejemplo n.º 1
0
def __getCleanCommand(target):
    command = ""
    if autoTools.isAutoToolsProject(target.path):
        command = autoTools.getCleanCommand()
    elif cmake.isCMakeProject(target.path):
        command = cmake.getCleanCommand()
    elif make.isMakeProject(target.path):
        command = make.getCleanCommand()
    return command
Ejemplo n.º 2
0
def __getCleanCommand(target):
    command = ""
    if autoTools.isAutoToolsProject(target.path):
        command = autoTools.getCleanCommand()
    elif cmake.isCMakeProject(target.path):
        command = cmake.getCleanCommand()
    elif make.isMakeProject(target.path):
        command = make.getCleanCommand()
    return command
Ejemplo n.º 3
0
def getCleanCommand():
    return make.getCleanCommand()