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