What is it?


Makefile Syntax

The Makefile has its writing rules, just like standard languages such as C, C++, Python...

Therefore, it has an expected writing pattern.

It has basic elements that can relate to each other, generating the “way make will understand.”

Elements:

Example:

makefile
CopiarEditar
.PHONY: first_make

first_make:
    clear

Meaning make will always execute first_make regardless of target checks.