File: Makefile

package info (click to toggle)
rust-repro-env 0.4.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 496 kB
  • sloc: makefile: 31
file content (14 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
build:
	cargo run --release -- build -- make build2
	sha256sum target/x86_64-unknown-linux-musl/release/repro-env

build2:
	RUSTFLAGS="-C strip=symbols" \
	cargo build --target x86_64-unknown-linux-musl --release

docs: docs/repro-env.1

docs/%: docs/%.scd
	scdoc < $^ > $@

.PHONY: build build2 docs