-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
56 lines (52 loc) · 999 Bytes
/
Makefile
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
TOPTARGETS = build clean
IMAGES = common \
input/pad \
cdrom/disc-swap \
cdrom/getloc \
cdrom/timing \
cdrom/terminal \
cpu/access-time \
cpu/code-in-io \
cpu/cop \
cpu/io-access-bitwidth \
dma/chain-looping \
dma/chopping \
dma/dpcr \
dma/otc-test \
gpu/animated-triangle \
gpu/bandwidth \
gpu/benchmark \
gpu/clipping \
gpu/clut-cache \
gpu/gp0-e1 \
gpu/gpustat \
gpu/lines \
gpu/mask-bit \
gpu/quad \
gpu/rectangles \
gpu/texture-flip \
gpu/texture-overflow \
gpu/transparency \
gpu/triangle \
gpu/uv-interpolation \
gpu/vram-to-vram-overlap \
gpu/version-detect \
gte/test-all \
gte-fuzz \
mdec/4bit \
mdec/8bit \
mdec/frame \
mdec/movie \
mdec/step-by-step-log \
spu/memory-transfer \
spu/ram-sandbox \
spu/stereo \
spu/test \
spu/toolbox \
timer-dump \
timers
all: $(TOPTARGETS)
$(TOPTARGETS): $(IMAGES)
$(IMAGES):
@$(MAKE) --no-print-directory -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTAGETS) $(IMAGES)