-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (24 loc) · 736 Bytes
/
Makefile
File metadata and controls
29 lines (24 loc) · 736 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
26
27
28
29
EXAMPLES = actor_like \
aggregate_root \
decider \
document_way \
duck_typing \
extracted_state \
functional \
polymorphic \
poro \
query_based \
rails_way \
repository \
roles \
yield_based
$(addprefix test_, $(EXAMPLES)):
@make -C examples/$(subst test_,,$@) test
$(addprefix mutate_, $(EXAMPLES)):
@make -C examples/$(subst mutate_,,$@) mutate
$(addprefix install_, $(EXAMPLES)):
@make -C examples/$(subst install_,,$@) install
install: $(addprefix install_, $(EXAMPLES))
test: $(addprefix test_, $(EXAMPLES))
mutate: $(addprefix mutate_, $(EXAMPLES))
.PHONY: install test mutate