1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Makefile — http-smtp-rele
#
# Wraps cargo invocations with the correct rustc/rustdoc binaries.
#
# Usage:
# make build build debug
# make release build release binary
# make test run all tests
# make check cargo check (fast type-check)
# make check-rfcs verify RFC directory integrity
# make clean remove build artifacts
# make gate full pre-commit verification
RUSTC :=
RUSTDOC :=
CARGO :=
:
:
:
:
:
:
:
# Full pre-commit gate (RFC 004)
: