makefile: Add more links (#1306)

This commit is contained in:
Rico Sta. Cruz
2019-12-28 11:27:37 +11:00
parent b74da3ccd0
commit a3bc51825a

View File

@@ -36,11 +36,11 @@ also:
## Command prefixes
| Prefix | Description |
| ------ | ----------- |
| `-` | Ignore errors |
| `@` | Don't print command |
| `+` | Run even if Make is in 'don't execute' mode |
| Prefix | Description |
| ------ | ------------------------------------------- |
| `-` | Ignore errors |
| `@` | Don't print command |
| `+` | Run even if Make is in 'don't execute' mode |
```makefile
build:
@@ -121,4 +121,6 @@ deploy:
## Further reading
* [isaacs's Makefile](https://gist.github.com/isaacs/62a2d1825d04437c6f08)
- [isaacs's Makefile](https://gist.github.com/isaacs/62a2d1825d04437c6f08)
- [Your Makefiles are wrong](https://tech.davis-hansson.com/p/make/)
- [Manual](https://www.gnu.org/software/make/manual/html_node/index.html)