Changeset 20618 for lang

Show
Ignore:
Timestamp:
10/03/08 20:10:21 (5 years ago)
Author:
tokuhirom
Message:

better packaging

Location:
lang/cplusplus/llv8call/trunk
Files:
3 added
2 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/llv8call/trunk

    • Property svn:ignore
      •  

        old new  
        44.sconsign.dblite 
        55llv8call 
         6vendor/v8 
         7out 
  • lang/cplusplus/llv8call/trunk/Sconstruct

    r20505 r20618  
    3434        os.system("scons library=shared") 
    3535        os.chdir("../..") 
     36    env.Install('out/lib', 'vendor/v8/libv8.so') 
    3637 
    3738def GuessToolchain(): 
     
    5859env.SConscript('src/SConscript', exports=['env','conf']) 
    5960env.SConscript('ext/SConscript', exports=['env','conf']) 
     61env.SConscript('sh/SConscript', exports=['env','conf']) 
    6062 
     63# install docs 
     64for f in Split('README INSTALL LICENSE NEWS'): 
     65    env.Install('out/doc/llv8call', f) 
     66