|
|
|
@ -37,6 +37,12 @@ options:
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- cd into this directory before running make
|
|
|
|
- cd into this directory before running make
|
|
|
|
required: true
|
|
|
|
required: true
|
|
|
|
|
|
|
|
file:
|
|
|
|
|
|
|
|
description:
|
|
|
|
|
|
|
|
- Use file as a Makefile
|
|
|
|
|
|
|
|
required: false
|
|
|
|
|
|
|
|
default: none
|
|
|
|
|
|
|
|
version_added: 2.5
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
EXAMPLES = '''
|
|
|
|
@ -57,6 +63,12 @@ EXAMPLES = '''
|
|
|
|
params:
|
|
|
|
params:
|
|
|
|
NUM_THREADS: 4
|
|
|
|
NUM_THREADS: 4
|
|
|
|
BACKEND: lapack
|
|
|
|
BACKEND: lapack
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Pass a file as a Makefile
|
|
|
|
|
|
|
|
- make:
|
|
|
|
|
|
|
|
chdir: /home/ubuntu/cool-project
|
|
|
|
|
|
|
|
target: all
|
|
|
|
|
|
|
|
file: /some-project/Makefile
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: Disabled the RETURN as it was breaking docs building. Someone needs to
|
|
|
|
# TODO: Disabled the RETURN as it was breaking docs building. Someone needs to
|
|
|
|
@ -103,6 +115,7 @@ def main():
|
|
|
|
target=dict(required=False, default=None, type='str'),
|
|
|
|
target=dict(required=False, default=None, type='str'),
|
|
|
|
params=dict(required=False, default=None, type='dict'),
|
|
|
|
params=dict(required=False, default=None, type='dict'),
|
|
|
|
chdir=dict(required=True, default=None, type='path'),
|
|
|
|
chdir=dict(required=True, default=None, type='path'),
|
|
|
|
|
|
|
|
file=dict(required=False, default=None, type='path')
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
# Build up the invocation of `make` we are going to use
|
|
|
|
# Build up the invocation of `make` we are going to use
|
|
|
|
@ -113,6 +126,9 @@ def main():
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
make_parameters = []
|
|
|
|
make_parameters = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if module.params['file'] is not None:
|
|
|
|
|
|
|
|
base_command = [make_path, "--file", module.params['file'], make_target]
|
|
|
|
|
|
|
|
else:
|
|
|
|
base_command = [make_path, make_target]
|
|
|
|
base_command = [make_path, make_target]
|
|
|
|
base_command.extend(make_parameters)
|
|
|
|
base_command.extend(make_parameters)
|
|
|
|
|
|
|
|
|
|
|
|
@ -144,7 +160,8 @@ def main():
|
|
|
|
stderr=err,
|
|
|
|
stderr=err,
|
|
|
|
target=module.params['target'],
|
|
|
|
target=module.params['target'],
|
|
|
|
params=module.params['params'],
|
|
|
|
params=module.params['params'],
|
|
|
|
chdir=module.params['chdir']
|
|
|
|
chdir=module.params['chdir'],
|
|
|
|
|
|
|
|
file=module.params['file']
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|