-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (28 loc) · 752 Bytes
/
Makefile
File metadata and controls
41 lines (28 loc) · 752 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
root = .
default: all
all: build all-recursive
all-here:
meson compile -C build
all-recursive: all-here data-all-recursive
build:
meson setup build
check:
meson test -C build
clean: clean-recursive
clean-here:
$(RM) -R build
clean-recursive: clean-here
@$(MAKE) -C data clean-recursive
clean-repository: clean
$(RM) -R .configuration.d
$(RM) configuration
$(RM) -R subprojects/algebra
$(RM) -R subprojects/expressions
$(RM) -R subprojects/string_cast
$(RM) -R subprojects/xml_parser
$(RM) -R subprojects/xml_puny_dom
$(RM) -R subprojects/xml_stream
data: data-all-recursive
data-all-recursive:
@$(MAKE) -C data all-recursive
.PHONY: all all-here all-recursive clean clean-here clean-recursive data data-all-recursive default