We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43e909 commit 158e3e5Copy full SHA for 158e3e5
README.md
@@ -19,6 +19,7 @@ Handy list of oft-used Linux commands that I will never remember. Not intended t
19
- [Session management using screen](#session-management-using-screen)
20
- [Docker 101](#docker-101)
21
- [Git 101](#git-101)
22
+- [make Basics](#make-basics)
23
24
## Shell 101
25
@@ -263,3 +264,16 @@ git checkout newbranch # Go to the new branch that still has the desired comm
263
264
```
265
266
[Atlassian Git Tutorials](https://www.atlassian.com/git/tutorials)
267
+
268
+## make Basics
269
270
+Make `target` for dependencies `dep1` and `dep2` using recipe specified by `command`
271
+```
272
+target: dep1 dep2
273
+ command arguments
274
275
+dep%: subdep1 subdep2
276
277
278
+* [Metaprogamming - MIT Missing Semester](https://missing.csail.mit.edu/2020/metaprogramming/)
279
+* [`make` Standard Targets](https://www.gnu.org/software/make/manual/html_node/Standard-Targets.html#Standard-Targets)
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments