Skip to content

Commit 315d213

Browse files
committed
make rules
1 parent 2c16b20 commit 315d213

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Makefile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -204,37 +204,31 @@ tutorial_data : $(TUTORIALS)
204204
tutorial_SimpleProgram : dist
205205
cd $(VERSION)/tutorials/SimpleProgram && \
206206
wiimake ../../../$(ISO_FILE) SimpleProgram.ini $(MAKE_FLAGS) && \
207-
wiimake-isotool ../../../$(ISO_FILE) --save SimpleProgram.data && \
208207
cd ../../..
209208

210209
tutorial_Teching : dist
211210
cd $(VERSION)/tutorials/Teching && \
212211
wiimake ../../../$(ISO_FILE) TechingTutorial.ini $(MAKE_FLAGS) && \
213-
wiimake-isotool ../../../$(ISO_FILE) --save TechingTutorial.data && \
214212
cd ../../..
215213

216214
tutorial_DI : dist
217215
cd $(VERSION)/tutorials/DI && \
218216
wiimake ../../../$(ISO_FILE) DITutorial.ini $(MAKE_FLAGS) && \
219-
wiimake-isotool ../../../$(ISO_FILE) --save DITutorial.data && \
220217
cd ../../..
221218

222219
tutorial_Recovery : dist
223220
cd $(VERSION)/tutorials/Recovery && \
224221
wiimake ../../../$(ISO_FILE) RecoveryTutorial.ini $(MAKE_FLAGS) && \
225-
wiimake-isotool ../../../$(ISO_FILE) --save RecoveryTutorial.data && \
226222
cd ../../..
227223

228224
tutorial_DefensiveAI : dist
229225
cd $(VERSION)/tutorials/DefensiveAI && \
230226
wiimake ../../../$(ISO_FILE) DefensiveAI.ini $(MAKE_FLAGS) && \
231-
wiimake-isotool ../../../$(ISO_FILE) --save DefensiveAI.data && \
232227
cd ../../..
233228

234229
tutorial_DashDancing : dist
235230
cd $(VERSION)/tutorials/DashDancing && \
236231
wiimake ../../../$(ISO_FILE) DashDancing.ini $(MAKE_FLAGS) && \
237-
wiimake-isotool ../../../$(ISO_FILE) --save DashDancing.data && \
238232
cd ../../..
239233

240234
# documentation target
@@ -248,6 +242,11 @@ docs :
248242
todo_list :
249243
grep -r TODO src || true
250244

245+
# restore iso to vanilla state
246+
restore_iso :
247+
rm -f $(ISO_FILE)
248+
cp VanillaMelee102.iso $(ISO_FILE)
249+
251250
# clean targets
252251
.PHONY : clean clean_libs clean_deps clean_objects clean_dist clean_tests
253252

0 commit comments

Comments
 (0)