Changeset fadf11e89b579bcc0336a0692ac15c93785f3f82
- Timestamp:
- 02/21/10 15:56:59 (2 years ago)
- Author:
- L. Donnie Smith <donnie.smith@…>
- Parents:
- 1a6f4671cbdc7bd54db8046818012c5e3a20264b
- git-committer:
- L. Donnie Smith <donnie.smith@gatech.edu> / 2010-02-21T10:56:59Z-0500
- Message:
-
Fix python module linking
- Location:
- python
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r6af6786
|
rfadf11e
|
|
| 8 | 8 | |
| 9 | 9 | all: |
| 10 | | $(PYTHON) setup.py build_ext $(DEBUGFLAGS) -I@top_builddir@/libcwiid -L@top_builddir@/libcwiid -lcwiid -lbluetooth |
| | 10 | $(PYTHON) setup.py build_ext $(DEBUGFLAGS) -I@top_builddir@/libcwiid -L@top_builddir@/libcwiid |
| 11 | 11 | |
| 12 | 12 | install: |
-
|
r49e0132
|
rfadf11e
|
|
| 3 | 3 | setup(name='cwiid', |
| 4 | 4 | version='0.6.00', |
| 5 | | ext_modules=[Extension('cwiid', ['cwiidmodule.c', 'Wiimote.c'])] |
| | 5 | ext_modules=[Extension('cwiid', ['cwiidmodule.c', 'Wiimote.c'], libraries=['cwiid', 'bluetooth'])] |
| 6 | 6 | ) |