Don't cleanup files "just in case".
The build doesn't create *.lbl files so we're not deleting *.lbl files.
This commit is contained in:
parent
1ab725e526
commit
38778cdeb6
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ zip:
|
||||||
# Clean-up rules
|
# Clean-up rules
|
||||||
|
|
||||||
mostlyclean:
|
mostlyclean:
|
||||||
@$(DEL) *.map *.o *.s *.lbl 2>$(NULLDEV)
|
@$(DEL) *.map *.o *.s 2>$(NULLDEV)
|
||||||
|
|
||||||
clean: mostlyclean
|
clean: mostlyclean
|
||||||
@$(DEL) $(EXELIST) samples.d64 2>$(NULLDEV)
|
@$(DEL) $(EXELIST) samples.d64 2>$(NULLDEV)
|
||||||
|
|
Loading…
Add table
Reference in a new issue