mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-16 18:56:27 +01:00
60 lines
1.3 KiB
Python
60 lines
1.3 KiB
Python
import sys
|
|
|
|
|
|
def my_win32_as():
|
|
args = sys.argv[1:]
|
|
inf = None
|
|
optstring = ''
|
|
while args:
|
|
a = args[0]
|
|
if a == '-o':
|
|
out = args[1]
|
|
args = args[2:]
|
|
continue
|
|
args = args[1:]
|
|
if not a[0] in '/-':
|
|
if not inf:
|
|
inf = a
|
|
continue
|
|
if a[:2] == '/c':
|
|
continue
|
|
if a[:3] == '/Fo':
|
|
out = a[3:]
|
|
continue
|
|
optstring = optstring + ' ' + a
|
|
|
|
with open(inf, 'rb') as ifp, open(out, 'wb') as ofp:
|
|
optstring = optstring + "\n"
|
|
ofp.write(optstring.encode('utf-8'))
|
|
for line in ifp:
|
|
if not line.startswith(b'#as'):
|
|
ofp.write(line)
|
|
|
|
|
|
def my_as():
|
|
import getopt
|
|
|
|
opts, args = getopt.getopt(sys.argv[1:], 'co:x')
|
|
optstring = ''
|
|
|
|
for opt, arg in opts:
|
|
if opt == '-o':
|
|
out = arg
|
|
else:
|
|
optstring = optstring + ' ' + opt
|
|
|
|
with open(args[0], 'rb') as ifp, open(out, 'wb') as ofp:
|
|
optstring = optstring + "\n"
|
|
ofp.write(optstring.encode('utf-8'))
|
|
for line in ifp:
|
|
if not line.startswith(b'#as'):
|
|
ofp.write(line)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if sys.platform == 'win32':
|
|
my_win32_as()
|
|
else:
|
|
my_as()
|
|
sys.exit(0)
|