From: Nathan Binkert Date: Thu, 21 Dec 2006 23:58:38 +0000 (-0800) Subject: Create a wrapper function to more easily add swig stuff to the build X-Git-Tag: m5_2.0_beta3~224^2~36 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f03e5f65658d78406ac545c041faa602b837dac;p=gem5.git Create a wrapper function to more easily add swig stuff to the build --HG-- extra : convert_revision : 3aaf540a9e314a88a8945579398f0d79aa85d5cf --- diff --git a/src/python/SConscript b/src/python/SConscript index be6248bab..1e49a18b2 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -98,18 +98,15 @@ pyzip_files.append('m5/defines.py') pyzip_files.append('m5/info.py') pyzip_files.append(join(env['ROOT'], 'util/pbs/jobfile.py')) -env.Command(['swig/debug_wrap.cc', 'm5/internal/debug.py'], - 'swig/debug.i', - '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' - '-o ${TARGETS[0]} $SOURCES') - -env.Command(['swig/main_wrap.cc', 'm5/internal/main.py'], - 'swig/main.i', - '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' - '-o ${TARGETS[0]} $SOURCES') - -pyzip_dep_files.append('m5/internal/debug.py') -pyzip_dep_files.append('m5/internal/main.py') +def swig_it(basename): + env.Command(['swig/%s_wrap.cc' % basename, 'm5/internal/%s.py' % basename], + 'swig/%s.i' % basename, + '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} ' + '-o ${TARGETS[0]} $SOURCES') + pyzip_dep_files.append('m5/internal/%s.py' % basename) + +swig_it('main') +swig_it('debug') # Action function to build the zip archive. Uses the PyZipFile module # included in the standard Python library.