-
Notifications
You must be signed in to change notification settings - Fork 58
/
Makefile
65 lines (46 loc) · 1.39 KB
/
Makefile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
ifndef VERSION
VERSION = `git describe --always --long --dirty --tags`
endif
# https://wiki.debian.org/ReproducibleBuilds/TimestampsProposal
ifndef SOURCE_DATE_EPOCH
SOURCE_DATE_EPOCH = `git log -1 --format=%ct`
endif
default: chasquid
all: chasquid chasquid-util smtp-check mda-lmtp dovecot-auth-cli
chasquid:
go build -ldflags="\
-X main.version=${VERSION} \
-X main.sourceDateTs=${SOURCE_DATE_EPOCH} \
" ${GOFLAGS}
chasquid-util:
go build ${GOFLAGS} ./cmd/chasquid-util/
smtp-check:
go build ${GOFLAGS} ./cmd/smtp-check/
mda-lmtp:
go build ${GOFLAGS} ./cmd/mda-lmtp/
dovecot-auth-cli:
go build ${GOFLAGS} ./cmd/dovecot-auth-cli/
test:
go test ${GOFLAGS} ./...
setsid -w ./test/run.sh
setsid -w ./test/stress.sh
setsid -w ./cmd/chasquid-util/test.sh
setsid -w ./cmd/mda-lmtp/test.sh
setsid -w ./cmd/dovecot-auth-cli/test.sh
install-binaries: chasquid chasquid-util smtp-check mda-lmtp
mkdir -p /usr/local/bin/
cp -a chasquid chasquid-util smtp-check mda-lmtp /usr/local/bin/
install-config-skeleton:
if ! [ -d /etc/chasquid ] ; then cp -arv etc / ; fi
if ! [ -d /var/lib/chasquid ]; then \
mkdir -v /var/lib/chasquid; \
chmod -v 0700 /var/lib/chasquid ; \
chown -v mail:mail /var/lib/chasquid ; \
fi
fmt:
go vet ./...
gofmt -s -w .
clang-format -i $(shell find . -iname '*.proto')
.PHONY: chasquid test \
chasquid-util smtp-check mda-lmtp dovecot-auth-cli \
fmt