-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

make


> Task runner for targets described in Makefile.

> Mostly used to control the compilation of an executable from source code.

More information.


Call the first target specified in the Makefile (usually named "all"):

make

Call a specific target:

make {target}

Call a specific target, executing 4 jobs at a time in parallel:

make -j{4} {target}

Use a specific Makefile:

make --file {file}

Execute make from another directory:

make --directory {directory}

Force making of a target, even if source files are unchanged:

make --always-make {target}

Override variables defined in the Makefile by the environment:

make --environment-overrides {target}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 07:11:18 2024