Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 158e3e5

Browse files
Add make basics
1 parent e43e909 commit 158e3e5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

‎README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Handy list of oft-used Linux commands that I will never remember. Not intended t
1919
- [Session management using screen](#session-management-using-screen)
2020
- [Docker 101](#docker-101)
2121
- [Git 101](#git-101)
22+
- [make Basics](#make-basics)
2223

2324
## Shell 101
2425

@@ -263,3 +264,16 @@ git checkout newbranch # Go to the new branch that still has the desired comm
263264
```
264265

265266
[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+
command arguments
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)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /