mirror of
https://github.com/uutils/shadow.git
synced 2026-06-10 16:14:57 -07:00
13 lines
206 B
Makefile
13 lines
206 B
Makefile
|
|
#!/usr/bin/make -f
|
||
|
|
%:
|
||
|
|
dh $@
|
||
|
|
|
||
|
|
override_dh_auto_build:
|
||
|
|
cargo build --release
|
||
|
|
|
||
|
|
override_dh_auto_install:
|
||
|
|
$(MAKE) DESTDIR=debian/shadow-rs PREFIX=/usr install
|
||
|
|
|
||
|
|
override_dh_auto_test:
|
||
|
|
cargo test --workspace
|