-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (21 loc) · 1.21 KB
/
Makefile
File metadata and controls
31 lines (21 loc) · 1.21 KB
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
################################################################################
### GO ###
################################################################################
GO ?= go
################################################################################
COMMIT_ID = $(shell git describe --dirty --broken)
################################################################################
### TESTS ###
################################################################################
tests: run-tests
run-check:
$(GO) vet ./...
staticcheck ./...
################################################################################
### ALL ###
################################################################################
all: amd64
################################################################################
### INCLUDES ###
################################################################################
include build/amd64.mk build/test.mk