# -*- python -*- 

Import('env')

files = [
	"BPMemory.cpp",
	"CPMemory.cpp",
	"LookUpTables.cpp",
	"TextureDecoder.cpp",
	"XFMemory.cpp",
	"XFBConvert.cpp",
	"PixelShader.cpp",
	"VertexShader.cpp",
	"Statistics.cpp",
	"Fifo.cpp",
	"VideoState.cpp",
	"Profiler.cpp",
	]

env_common = env.Clone()
env_common.Append(CXXFLAGS = [ '-fPIC' ])
env_common.StaticLibrary("videocommon", files)