forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
35 lines (28 loc) · 897 Bytes
/
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
PROJECT_ROOT = code.uber.internal/devexp/minions
# define the list of thrift files the service depends on
# (if you have some)
THRIFT_SRCS = idl/code.uber.internal/devexp/minions/minions.thrift
# list all executables
PROGS = minions \
cmd/stress/stress \
cmd/demo/demo \
minions: main.go \
$(wildcard config/*.go) \
$(wildcard service/*.go) \
cmd/stress/stress: cmd/stress/main.go \
$(wildcard health/driver/*.go) \
$(wildcard health/stress/*.go) \
$(wildcard test/flow/*.go) \
$(wildcard common/*.go) \
$(wildcard common/**/*.go) \
$(wildcard workflow/*.go) \
$(wildcard store/*.go) \
cmd/demo/demo: cmd/demo/*.go \
$(wildcard test/flow/*.go) \
$(wildcard common/*.go) \
$(wildcard common/**/*.go) \
$(wildcard workflow/*.go) \
$(wildcard store/*.go) \
-include go-build/rules.mk
go-build/rules.mk:
git submodule update --init