~ubuntu-branches/ubuntu/quantal/aqsis/quantal

« back to all changes in this revision

Viewing changes to shadercompiler/slpp/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2009-08-06 04:53:26 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090806045326-z6xeaaao62idxcc6
Tags: 1.6.0-0ubuntu1
* New upstream release
* debian/control:
  - changed name of lib package to libaqsis1 instead of aqsis-libsc2a
  - changed name of dev package to libaqsis-dev instead of aqsis-libs-dev
  - Added aqsis-data package
  - Revised summary text according to that specified by the RISpec (Pixar)
* Moved examples installation from aqsis.install to aqsis-data.install
* debian/rules: 
  - added content to binary-indep target
* debian/rules: added explicit name of mime file to force dh_installmime
  to generate postinst and prerm scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Import('env')
2
 
slppenv = env.Copy()
3
 
slppenv.AppendUnique(CPPDEFINES=['SLPP_LIBRARY'])
4
 
slpp_sources = Split("""
5
 
        pp1.c
6
 
        pp2.c
7
 
        pp3.c
8
 
        pp4.c
9
 
        pp5.c
10
 
        pp6.c
11
 
        pp7.c
12
 
        pp8.c""")
13
 
 
14
 
slpp_headers = Split("""
15
 
        pp.h
16
 
        ppext.h""")
17
 
 
18
 
# Set any platform specific options for this target
19
 
slppenv.UseTargetOptions('slpplib')
20
 
 
21
 
slpp_objs = [slppenv.Object(file) for file in slpp_sources]
22
 
 
23
 
Export('slpp_objs')
24
 
 
25
 
# Note: Need to work out how to do an executable build of slpp as well at some point.
26
 
# There are some issues with duplicate object files.
27
 
 
28
 
env.Distribute(slpp_sources)
29
 
env.Distribute(slpp_headers)
30
 
env.Distribute('PP.DOC')
31
 
env.Distribute('SConscript')