31 lines
443 B
Python
31 lines
443 B
Python
|
Import('file_list')
|
||
|
my_list = Split("""
|
||
|
dface.h
|
||
|
input.cpp
|
||
|
input.h
|
||
|
keyscan.h
|
||
|
main.cpp
|
||
|
main.h
|
||
|
sdl.cpp
|
||
|
sdl.h
|
||
|
sdl-icon.h
|
||
|
sdl-joystick.cpp
|
||
|
sdl-netplay.cpp
|
||
|
sdl-netplay.h
|
||
|
sdl-opengl.cpp
|
||
|
sdl-opengl.h
|
||
|
sdl-sound.cpp
|
||
|
sdl-throttle.cpp
|
||
|
sdl-video.cpp
|
||
|
sdl-video.h
|
||
|
throttle.cpp
|
||
|
throttle.h
|
||
|
unix-netplay.cpp
|
||
|
unix-netplay.h
|
||
|
usage.h
|
||
|
""")
|
||
|
for x in range(len(my_list)):
|
||
|
my_list[x] = 'drivers/pc/' + my_list[x]
|
||
|
file_list = my_list + file_list
|
||
|
Export('file_list')
|