add a Makefile
authorRalf Jung <post@ralfj.de>
Mon, 8 Jun 2015 20:29:57 +0000 (22:29 +0200)
committerRalf Jung <post@ralfj.de>
Mon, 8 Jun 2015 20:29:57 +0000 (22:29 +0200)
Makefile [new file with mode: 0644]
README.rst
src/main.rs

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..cb4172e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+all: docs
+.PHONY: docs
+
+docs:
+       docco src/*.rs -l linear
index 40bb559ed16f56c110b116d6b3c8c82fb2a3c123..8263e556dc9f356bc8ad65e3a75df9f460bdaae8 100644 (file)
@@ -11,7 +11,7 @@ Usage
 -----
 
 You can either read through the sources in ``src/``, or generate the HTML in 
-``docs/`` using ``docco src/*.rs`` (this step needs Docco_), or go directly to 
+``docs/`` using ``make docs`` (this step needs Docco_), or go directly to 
 `the rendered output`_.
 
 Source, License
index 51de479ea8c53fe4fae1514179edf8fea7a22bb3..98bf6c1dfb0aa73d56599a5128058951ceed6024 100644 (file)
@@ -1,7 +1,7 @@
 // Welcome to Rust-101
 // ===================
 //
-// This is Rust-101, a small tutorial to the [Rust language](http://www.rust-lang.org/).
+// This is [Rust-101](https://www.ralfj.de/projects/rust-101/), a small tutorial for the [Rust language](http://www.rust-lang.org/).
 // This is intended to be an interactive, hands-on course: I believe the only way to
 // *really* learn a language is to write code in it, so you should be coding during
 // the course. These documents mainly serve as a guide to the teacher, reminding me
@@ -51,5 +51,3 @@ fn main() {
 // * [The Rust Book](https://doc.rust-lang.org/stable/book/)
 // * [Rust by Example](http://rustbyexample.com/)
 // * The [Rust Subreddit](https://www.reddit.com/r/rust/)
-
-// (This website has been generated with [Docco](https://jashkenas.github.io/docco/))