wala-rust

Content-adressed HTTP file server
Info | Log | Files | Refs | README | LICENSE

Makefile (458B)


      1 all:
      2 	cargo -v --bin wala --all-features --release
      3 
      4 rustup:
      5 	rustup run 1.67 cargo build -v --bin wala --all-features --release
      6 
      7 debug:
      8 	rustup run 1.67 cargo build -v --all-features
      9 
     10 test:
     11 	rustup run 1.67 cargo test -v --all-features
     12 
     13 doc:
     14 	-asciidoc -b docbook5 README.adoc 
     15 	-pandoc -f docbook -t gfm -o README.md -T Wala README.xml
     16 	-pandoc -f docbook -t plain -o README.txt -T Wala README.xml
     17 	rm -vf README.xml
     18 
     19 clean:
     20 	rm -vrf target/
     21 
     22 .PHONY: clean