14 lines
242 B
Makefile
14 lines
242 B
Makefile
|
http: src/main.rs Cargo.toml Cargo.lock
|
||
|
cargo build --release
|
||
|
|
||
|
install: http
|
||
|
install target/release/http-util /usr/local/bin/http
|
||
|
ln -sf http /usr/local/bin/https
|
||
|
install http.1 /usr/local/share/man/man1/
|
||
|
|
||
|
clean:
|
||
|
cargo clean
|
||
|
|
||
|
all: http
|
||
|
|