diff options
author | robochat <rjsteed@talk21.com> | 2015-09-14 20:05:43 +0200 |
---|---|---|
committer | robochat <rjsteed@talk21.com> | 2015-09-14 20:05:43 +0200 |
commit | b4ad0b800299d53f9cd18cf7da87299d1e71f6dc (patch) | |
tree | 9cbfc1691214e1f16b6e2dc5fd247cd49c0322df /make.html.markdown | |
parent | ab6fc2fd2348a06667b4fbb4fc1e3cc650bc6f33 (diff) |
small corrections to make tutorial
Diffstat (limited to 'make.html.markdown')
-rw-r--r-- | make.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make.html.markdown b/make.html.markdown index 1cf0d8c7..16aa0b30 100644 --- a/make.html.markdown +++ b/make.html.markdown @@ -58,7 +58,7 @@ file2.txt file3.txt: file0.txt file1.txt # A phony target. Any target that isn't a file. # It will never be up to date so make will always try to run it. -all: faker process +all: maker process # We can declare things out of order. maker: @@ -230,7 +230,7 @@ endif ### More Resources -[gnu make documentation](https://www.gnu.org/software/make/manual/) -[software carpentry tutorial](http://swcarpentry.github.io/make-novice/) -learn C the hard way [ex2](http://c.learncodethehardway.org/book/ex2.html) [ex28](http://c.learncodethehardway.org/book/ex28.html) ++ [gnu make documentation](https://www.gnu.org/software/make/manual/) ++ [software carpentry tutorial](http://swcarpentry.github.io/make-novice/) ++ learn C the hard way [ex2](http://c.learncodethehardway.org/book/ex2.html) [ex28](http://c.learncodethehardway.org/book/ex28.html) |