chore: added placeholder for the make article

This commit is contained in:
Michele Cereda
2023-11-27 18:23:45 +01:00
parent 66e9991e0a
commit 2cad693069

View File

@@ -0,0 +1,15 @@
```makefile
# make override_me=new_value target
override override_me ?= default_value
target_name: target_specific_variable = value
target_name: previous_target required_file.ext
echoed_command
@quiet_command
${MAKE} next_target
previous_target:
@quiet_command
next_target:
```