-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (23 loc) · 720 Bytes
/
Makefile
File metadata and controls
27 lines (23 loc) · 720 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
.PHONY: all
all: opt
opt:
$(MAKE) -C libraries/EightBit/src opt
$(MAKE) -C libraries/EightBit/Intel8080/src opt
$(MAKE) -C libraries/EightBit/Gaming/src opt
$(MAKE) -C src opt
debug:
$(MAKE) -C libraries/EightBit/src debug
$(MAKE) -C libraries/EightBit/Intel8080/src debug
$(MAKE) -C libraries/EightBit/Gaming/src debug
$(MAKE) -C src debug
coverage:
$(MAKE) -C libraries/EightBit/src coverage
$(MAKE) -C libraries/EightBit/Intel8080/src coverage
$(MAKE) -C libraries/EightBit/Gaming/src coverage
$(MAKE) -C src coverage
.PHONY: clean
clean:
$(MAKE) -C libraries/EightBit/src clean
$(MAKE) -C libraries/EightBit/Intel8080/src clean
$(MAKE) -C libraries/EightBit/Gaming/src clean
$(MAKE) -C src clean