-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (18 loc) · 744 Bytes
/
Makefile
File metadata and controls
22 lines (18 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.PHONY: all clean release
.DEFAULT_GOAL = all
release: Makefile
@ $(MAKE) --no-print-directory -C loopUnrolling release
@ $(MAKE) --no-print-directory -C memoryLayout release
@ $(MAKE) --no-print-directory -C CvsC++ release
all: Makefile
@ $(MAKE) --no-print-directory -C loopUnrolling all
@ $(MAKE) --no-print-directory -C memoryLayout all
@ $(MAKE) --no-print-directory -C CvsC++ all
clean:
@ $(MAKE) --no-print-directory -C loopUnrolling clean
@ $(MAKE) --no-print-directory -C memoryLayout clean
@ $(MAKE) --no-print-directory -C CvsC++ clean
dist-clean:
@ $(MAKE) --no-print-directory -C loopUnrolling dist-clean
@ $(MAKE) --no-print-directory -C memoryLayout dist-clean
@ $(MAKE) --no-print-directory -C CvsC++ dist-clean