mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-14 17:00:20 +01:00
22 lines
466 B
Python
22 lines
466 B
Python
|
import sys
|
||
|
|
||
|
args = sys.argv[1:]
|
||
|
while args:
|
||
|
arg = args[0]
|
||
|
if arg == '-d':
|
||
|
args = args[1:]
|
||
|
elif arg == '-sourcepath':
|
||
|
args = args[1:]
|
||
|
else:
|
||
|
break
|
||
|
args = args[1:]
|
||
|
|
||
|
for file in args:
|
||
|
out = file.lower().replace('.java', '.class')
|
||
|
with open(file, 'rb') as infile, open(out, 'wb') as outfile:
|
||
|
for line in infile:
|
||
|
if not line.startswith(b'/*javac*/'):
|
||
|
outfile.write(line)
|
||
|
|
||
|
sys.exit(0)
|