ajhsu / blog

The external storage of my brain.
3 stars 0 forks source link

GNU Make #84

Open ajhsu opened 5 years ago

ajhsu commented 5 years ago

Disclaimer

This document is a personal digest from the official GNU Make documentation. If you're looking for the official documentation, please refer to: https://ftp.gnu.org/old-gnu/Manuals/make-3.79.1/html_chapter/make_toc.html

Rules

A simple makefile consists of "rules" with the following shape:

target ... : prerequisites ...
        command
        ...
        ...