-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (22 loc) · 756 Bytes
/
Makefile
File metadata and controls
30 lines (22 loc) · 756 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
.PHONY: all std omp cuda clean display_timeline generate_video timeline_details
MAKEFILE_DIR = makefiles
all: std omp cuda
std:
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.std
omp:
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.omp
cuda:
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.cuda
display_timeline:
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.display
generate_video:
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.video
timeline_details:
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.details
clean:
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.std clean
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.omp clean
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.cuda clean
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.display clean
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.video clean
$(MAKE) -f $(MAKEFILE_DIR)/Makefile.details clean