From 8996911681e5cb4d4638843df60dd551bbc68a32 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Thu, 10 Mar 2016 21:03:13 -0500 Subject: [PATCH] makefile --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..290ac68 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +all: + echo Nothing to do... + +ctags: + ctags --options=ctags.rust --languages=Rust src/*.rs src/*/*.rs + +docs: + cargo doc + in-dir ./target/doc fix-perms + rscp ./target/doc/* gopher:~/www/burntsushi.net/rustdoc/ + +push: + git push origin master + git push github master