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