Franck Pommereau

suppressed useless bones.py

#!/usr/bin/env python
import sys
import bones.cmd
bones.cmd.launch("bones_edit.py", *sys.argv[1:]).wait()
import re
import bones.cpu
from words import hexa_to_bin, int_to_hexa, hexa_to_int
from words import hexa_to_bin, int_to_hexa
class AsmError (Exception) :
pass
class Word :
_dec = None
def __init__ (self, value) :
......
......@@ -13,7 +13,7 @@ icon = {"Windows" : ["--icon", "bones.ico"],
args = ["pyinstaller", "--clean", "-F", "-w"] + icon.get(platform.system(), [])
clean(True)
targets = ["bones.py", "bones_edit.py", "bones_machine.py"]
targets = ["bones_edit.py", "bones_machine.py"]
while targets :
subprocess.call(args + targets)
targets.pop(0)
......