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
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 8 additions and 6 deletions

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)