-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile.raspbian
182 lines (159 loc) · 4.11 KB
/
Makefile.raspbian
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
all: vecx.emulated/vecx vecx.direct/vecx gyrocks/gyrocks battlezone/battlezone gravitar/gravitar spaceduel/spaceduel tempest/tempest blackwidow/blackwidow deluxe/deluxe lunar/lunar cinematronics/cinemu helloWorld redbaron/redbaron linmenu/linmenu VMMenu/vmmenu xhyperoid/vhyperoid zblast/zblast tailgunner/tailgunner asteroids_sbt/asteroids xinvaders3d/xinv3d
lunar/lunar:
cd lunar; make -f Makefile.raspbian
cd ..
redbaron/redbaron:
cd redbaron; make -f Makefile.raspbian
cd ..
deluxe/deluxe:
cd deluxe; make -f Makefile.raspbian
cd ..
blackwidow/blackwidow:
cd blackwidow; make -f Makefile.raspbian
cd ..
tailgunner/tailgunner:
cd tailgunner; make -f Makefile.raspbian
cd ..
vecx.emulated/vecx:
cd vecx.emulated; make -f Makefile.raspbian
cd ..
vecx.direct/vecx:
cd vecx.direct; make -f Makefile.raspbian
cd ..
asteroids_sbt/asteroids:
cd asteroids_sbt; make -f Makefile.raspbian
cd ..
gyrocks/gyrocks:
cd gyrocks; make -f Makefile.raspbian
cd ..
battlezone/battlezone:
cd battlezone; make -f Makefile.raspbian
cd ..
gravitar/gravitar:
cd gravitar; make -f Makefile.raspbian
cd ..
spaceduel/spaceduel:
cd spaceduel; make -f Makefile.raspbian
cd ..
tempest/tempest:
cd tempest; make -f Makefile.raspbian
cd ..
cinematronics/cinemu:
cd cinematronics; make -f Makefile.raspbian
cd ..
helloWorld:
cd hello_world; make -f Makefile.raspbian
cd ..
linmenu/linmenu:
cd linmenu; make -f Makefile
cd ..
VMMenu/vmmenu:
cd VMMenu; make -f Makefile.raspbian
cd ..
xhyperoid/vhyperoid:
cd xhyperoid; make -f Makefile
cd ..
zblast/zblast:
cd zblast; make -f Makefile
cd ..
xinvaders3d/xinv3d:
cd xinvaders3d; make -f Makefile
cd ..
vecho/vecho:
cd vecho; make -f Makefile
cd ..
clean:
cd lunar; make -f Makefile.raspbian clean
cd ..
#cd asteroids; make -f Makefile.raspbian clean
#cd ..
cd deluxe; make -f Makefile.raspbian clean
cd ..
cd redbaron; make -f Makefile.raspbian clean
cd ..
cd blackwidow; make -f Makefile.raspbian clean
cd ..
cd tailgunner; make -f Makefile.raspbian clean
cd ..
cd vecx.emulated; make -f Makefile.raspbian clean
cd ..
cd vecx.direct; make -f Makefile.raspbian clean
cd ..
cd asteroids_sbt; make -f Makefile.raspbian clean
cd ..
cd gyrocks; make -f Makefile.raspbian clean
cd ..
cd battlezone; make -f Makefile.raspbian clean
cd ..
cd gravitar; make -f Makefile.raspbian clean
cd ..
cd spaceduel; make -f Makefile.raspbian clean
cd ..
cd tempest; make -f Makefile.raspbian clean
cd ..
cd sim; make -f Makefile.raspbian clean
cd ..
cd cinematronics; make -f Makefile.raspbian clean
cd ..
cd hello_world; make -f Makefile.raspbian clean
cd ..
cd linmenu; make -f Makefile clean
cd ..
cd pitrex/pitrex; make -f Makefile.raspbian clean
cd ..
cd pitrex/vectrex; make -f Makefile.raspbian clean
cd ..
cd VMMenu; make -f Makefile.raspbian clean
cd ..
cd xhyperoid; make -f Makefile clean
cd ..
cd zblast; make -f Makefile clean
cd ..
cd xinvaders3d; make -f Makefile clean
cd ..
cd vecho; make -f Makefile clean
cd ..
install:
mkdir -p /opt/pitrex/bin
mkdir -p /opt/pitrex/man
mkdir -p /opt/pitrex/share
cd lunar; make -f Makefile.raspbian install
cd ..
cd deluxe; make -f Makefile.raspbian install
cd ..
cd redbaron; make -f Makefile.raspbian install
cd ..
cd blackwidow; make -f Makefile.raspbian install
cd ..
cd tailgunner; make -f Makefile.raspbian install
cd ..
cd vecx.emulated; make -f Makefile.raspbian install
cd ..
cd vecx.direct; make -f Makefile.raspbian install
cd ..
cd asteroids_sbt; make -f Makefile.raspbian install
cd ..
cd gyrocks; make -f Makefile.raspbian install
cd ..
cd battlezone; make -f Makefile.raspbian install
cd ..
cd gravitar; make -f Makefile.raspbian install
cd ..
cd spaceduel; make -f Makefile.raspbian install
cd ..
cd tempest; make -f Makefile.raspbian install
cd ..
cd cinematronics; make -f Makefile.raspbian install
cd ..
cd hello_world; make -f Makefile.raspbian install
cd ..
cd linmenu; make -f Makefile install
cd ..
cd VMMenu; make -f Makefile.raspbian install
cd ..
cd xhyperoid; make -f Makefile install
cd ..
cd zblast; make -f Makefile install
cd ..
cd vecho; make -f Makefile install
cd ..