W3cubDocs

/Ansible

make - Run targets in a Makefile

New in version 2.1.

Synopsis

Run targets in a Makefile.

Requirements (on host that executes module)

  • make

Options

parameter required default choices comments
chdir
yes
cd into this directory before running make
params
no none
Any extra parameters to pass to make
target
no none
The target to run

Examples

# Build the default target
- make: chdir=/home/ubuntu/cool-project

# Run `install` target as root
- make: chdir=/home/ubuntu/cool-project target=install
  become: yes

# Pass in extra arguments to build
- make:
    chdir: /home/ubuntu/cool-project
    target: all
    params:
      NUM_THREADS: 4
      BACKEND: lapack

This is an Extras Module

For more information on what this means please read Extras Modules

For help in developing on modules, should you be so inclined, please read Community Information & Contributing, developing_test_pr and Developing Modules.

© 2012–2016 Michael DeHaan
© 2016 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/make_module.html