forked from data-prep-kit/data-prep-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (33 loc) · 899 Bytes
/
Copy pathMakefile
File metadata and controls
42 lines (33 loc) · 899 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
30
31
32
33
34
35
36
37
38
39
40
41
42
REPOROOT=../
# Use make help, to see the available rules
include ../.make.defaults
setup::
@# Help: Recursively make $@ all subdirs
$(MAKE) RULE=$@ .recurse
clean::
@# Help: Recursively make $@ all subdirs
$(MAKE) RULE=$@ .recurse
build::
@# Help: Recursively make $@ in subdirs
$(MAKE) RULE=$@ .recurse
venv::
@# Help: Recursively make $@ in subdirs
$(MAKE) RULE=$@ .recurse
image::
@# Help: Recursively make $@ in all subdirs
@$(MAKE) RULE=$@ .recurse
publish::
@# Help: Recursively make $@ in all subdirs
@$(MAKE) RULE=$@ .recurse
test-image::
@# Help: Recursively make $@ in all subdirs
@$(MAKE) RULE=$@ .recurse
test::
@# Help: Recursively make $@ in all subdirs
@$(MAKE) RULE=$@ .recurse
test-src::
@# Help: Recursively make $@ in all subdirs
$(MAKE) RULE=$@ .recurse
load-image::
@# Help: Recursively make $@ in all subdirs
$(MAKE) RULE=$@ .recurse