00001 """
00002 SLIM tool for scons
00003 """
00004
00005 __copyright__ = """
00006 Copyright 2008 Sean Ross-Ross
00007 """
00008 __license__ = """
00009 This file is part of SLIMpy .
00010
00011 SLIMpy is free software: you can redistribute it and/or modify
00012 it under the terms of the GNU Lesser General Public License as published by
00013 the Free Software Foundation, either version 3 of the License, or
00014 (at your option) any later version.
00015
00016 SLIMpy is distributed in the hope that it will be useful,
00017 but WITHOUT ANY WARRANTY; without even the implied warranty of
00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00019 GNU Lesser General Public License for more details.
00020
00021 You should have received a copy of the GNU Lesser General Public License
00022 along with SLIMpy . If not, see <http://www.gnu.org/licenses/>.
00023 """
00024
00025
00026
00027
00028
00029
00030 def generate(env):
00031 """Add Builders and construction variables for xlC / Visual Age
00032 suite to an Environment."""
00033
00034 from os.path import join
00035 env['MKHOWTO'] = join("/sw/share/doc/python24/Doc/tools/mkhowto")
00036
00037 import slimproj_core.builders.CreateBuilders
00038 BUILDERS=slimproj_core.builders.CreateBuilders.CreateBuilders()
00039
00040 env.Append( BUILDERS=BUILDERS )
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 return
00051
00052
00053 def exists(env):
00054 return 1
00055
00056