diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2008-04-29 12:08:27 +0000 |
---|---|---|
committer | Frederic Peters <fpeters@entrouvert.com> | 2008-04-29 12:08:27 +0000 |
commit | 7b549d0ce332cf7ca00df99d3bd734becd5bbcf7 (patch) | |
tree | 5060511097b07265ece92f4b4f2e05fb5c03b7de /bindings/python | |
parent | 3386a3e6beabcd4ab374d20fecf117aead9833fa (diff) | |
download | lasso-7b549d0ce332cf7ca00df99d3bd734becd5bbcf7.tar.gz lasso-7b549d0ce332cf7ca00df99d3bd734becd5bbcf7.tar.xz lasso-7b549d0ce332cf7ca00df99d3bd734becd5bbcf7.zip |
[project @ fpeters@0d.be-20080325172346-eitu3onvzps4b30z]
merging benjamin stuff and adding --enable-id-wsf when id-wsf is asked
Original author: Frederic Peters <fpeters@0d.be>
Date: 2008-03-25 18:23:46.535000+01:00
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am index 62facaff..5e4c62a7 100644 --- a/bindings/python/Makefile.am +++ b/bindings/python/Makefile.am @@ -24,8 +24,12 @@ endif BUILT_SOURCES = _lasso.c +if WSF_ENABLED +EXTRA_ARGS = --enable-id-wsf +endif + _lasso.c: - $(PYTHON) $(top_srcdir)/bindings/bindings.py -l python --src-dir=$(top_srcdir)/lasso/ + $(PYTHON) $(top_srcdir)/bindings/bindings.py -l python --src-dir=$(top_srcdir)/lasso/ $(EXTRA_ARGS) clean-local: -rm -f lasso.py lasso.pyc _lasso.c |