-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
113 lines (91 loc) · 3.56 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
CFLAGS += -Wall -Wextra -pedantic -O2
XBE_TITLE = suite480p
GEN_XISO = $(XBE_TITLE).iso
SRCS = $(CURDIR)/main.c
NXDK_DIR = $(CURDIR)/../..
NXDK_SDL = y
include $(NXDK_DIR)/Makefile
TARGET += $(OUTPUT_DIR)/title.bmp
$(GEN_XISO): $(OUTPUT_DIR)/title.bmp
$(OUTPUT_DIR)/title.bmp: $(CURDIR)/title.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/nrig.bmp
$(GEN_XISO): $(OUTPUT_DIR)/nrig.bmp
$(OUTPUT_DIR)/nrig.bmp: $(CURDIR)/nrig.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/gridfullrgb.bmp
$(GEN_XISO): $(OUTPUT_DIR)/gridfullrgb.bmp
$(OUTPUT_DIR)/gridfullrgb.bmp: $(CURDIR)/gridfullrgb.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/gridlimitedrgb.bmp
$(GEN_XISO): $(OUTPUT_DIR)/gridlimitedrgb.bmp
$(OUTPUT_DIR)/gridlimitedrgb.bmp: $(CURDIR)/gridlimitedrgb.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/color100.bmp
$(GEN_XISO): $(OUTPUT_DIR)/color100.bmp
$(OUTPUT_DIR)/color100.bmp: $(CURDIR)/color100.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/color101.bmp
$(GEN_XISO): $(OUTPUT_DIR)/color101.bmp
$(OUTPUT_DIR)/color101.bmp: $(CURDIR)/color101.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/color102.bmp
$(GEN_XISO): $(OUTPUT_DIR)/color102.bmp
$(OUTPUT_DIR)/color102.bmp: $(CURDIR)/color102.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/color75.bmp
$(GEN_XISO): $(OUTPUT_DIR)/color75.bmp
$(OUTPUT_DIR)/color75.bmp: $(CURDIR)/color75.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/color751.bmp
$(GEN_XISO): $(OUTPUT_DIR)/color751.bmp
$(OUTPUT_DIR)/color751.bmp: $(CURDIR)/color751.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/color752.bmp
$(GEN_XISO): $(OUTPUT_DIR)/color752.bmp
$(OUTPUT_DIR)/color752.bmp: $(CURDIR)/color752.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/circles.bmp
$(GEN_XISO): $(OUTPUT_DIR)/circles.bmp
$(OUTPUT_DIR)/circles.bmp: $(CURDIR)/circles.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/circles_grid.bmp
$(GEN_XISO): $(OUTPUT_DIR)/circles_grid.bmp
$(OUTPUT_DIR)/circles_grid.bmp: $(CURDIR)/circles_grid.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/circles_griddot.bmp
$(GEN_XISO): $(OUTPUT_DIR)/circles_griddot.bmp
$(OUTPUT_DIR)/circles_griddot.bmp: $(CURDIR)/circles_griddot.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/motoko.bmp
$(GEN_XISO): $(OUTPUT_DIR)/motoko.bmp
$(OUTPUT_DIR)/motoko.bmp: $(CURDIR)/motoko.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/checkpos.bmp
$(GEN_XISO): $(OUTPUT_DIR)/checkpos.bmp
$(OUTPUT_DIR)/checkpos.bmp: $(CURDIR)/checkpos.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/stripespos.bmp
$(GEN_XISO): $(OUTPUT_DIR)/stripespos.bmp
$(OUTPUT_DIR)/stripespos.bmp: $(CURDIR)/stripespos.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/shadow.bmp
$(GEN_XISO): $(OUTPUT_DIR)/shadow.bmp
$(OUTPUT_DIR)/shadow.bmp: $(CURDIR)/shadow.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/striped.bmp
$(GEN_XISO): $(OUTPUT_DIR)/striped.bmp
$(OUTPUT_DIR)/striped.bmp: $(CURDIR)/striped.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/lag-full.bmp
$(GEN_XISO): $(OUTPUT_DIR)/lag-full.bmp
$(OUTPUT_DIR)/lag-full.bmp: $(CURDIR)/lag-full.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/lag-per.bmp
$(GEN_XISO): $(OUTPUT_DIR)/lag-per.bmp
$(OUTPUT_DIR)/lag-per.bmp: $(CURDIR)/lag-per.bmp $(OUTPUT_DIR)
$(VE)cp '$<' '$@'
TARGET += $(OUTPUT_DIR)/DejaVuSerif.ttf
$(GEN_XISO): $(OUTPUT_DIR)/DejaVuSerif.ttf
$(OUTPUT_DIR)/DejaVuSerif.ttf: $(CURDIR)/DejaVuSerif.ttf $(OUTPUT_DIR)
$(VE)cp '$<' '$@'