-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (19 loc) · 456 Bytes
/
Copy pathMakefile
File metadata and controls
25 lines (19 loc) · 456 Bytes
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
# -*- mode: makefile-gmake; coding: utf-8 -*-
# # vi: set syntax=make :
# cSpell.language:en-GB
# # cSpell:disable
#
.PHONY: all clientapi clean dep
default: all
all: clean clientapi dep monitor
dep: ## Get the dependencies
@go get -v -d ./...
clientapi: ## generate the protocol stubs
${MAKE} -C clientapi
monitor: clientapi dep
go build ./...
go build
go vet ./...
clean: ## clean all generated files
-rm monitor
${MAKE} -C clientapi clean