mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2024-12-12 19:18:24 +02:00
15 lines
263 B
Makefile
15 lines
263 B
Makefile
|
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
|