-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (26 loc) · 706 Bytes
/
Makefile
File metadata and controls
35 lines (26 loc) · 706 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
# Main makefile in the repo's root, with which anything can be compiled
MAKE += --silent
BUILD_DIR := ./build
all: filtered stitched groundtruth tests
# Compilation of the filtered main executable
filtered:
@mkdir -p $(BUILD_DIR)
@$(MAKE) -C src ../filtered
# Compilation of the stitched main executable
stitched:
@mkdir -p $(BUILD_DIR)
@$(MAKE) -C src ../stitched
# Compilation of the groundtruth executable
groundtruth:
@mkdir -p $(BUILD_DIR)
@$(MAKE) -C src ../groundtruth
# Tests compilation
tests:
@mkdir -p $(BUILD_DIR)
@$(MAKE) -C tests
# Clean-up rule
clean:
@$(MAKE) -C src clean
@$(MAKE) -C tests clean
@rm -r $(BUILD_DIR)
.PHONY: all filtered stitched groundtruth tests clean