Documentation

make - Run targets in a Makefile

New in version 2.1.

Synopsis

R u n

t a r g e t s

i n

a

M a k e f i l e .

Options

parameter required default choices comments
chdir
yes
    cd into this directory before running make
    params
    no
      Any extra parameters to pass to make
      target
      no
        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, Helping Testing PRs and Developing Modules.