Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 271 Bytes

makefile.md

File metadata and controls

9 lines (8 loc) · 271 Bytes

Misc

  • making a target depend on a file requires some jumping around. An example of a target foo (lowercase) looks basically like this:
    FOO = path/to/file
    foo: $(FOO)
    $(FOO):
        echo "a code to actually generate the file" > $(FOO)