Home | History | Annotate | Download | only in i915
      1 Import('*')
      2 
      3 env = env.Clone()
      4 
      5 i915 = env.ConvenienceLibrary(
      6 	target = 'i915',
      7 	source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
      8 	)
      9 
     10 env.Alias('i915', i915)
     11 
     12 Export('i915')
     13