Changeset fadf11e89b579bcc0336a0692ac15c93785f3f82 for python
- Timestamp:
- 02/21/10 15:56:59 (2 years ago)
- Parents:
- 1a6f4671cbdc7bd54db8046818012c5e3a20264b
- git-committer:
- L. Donnie Smith <donnie.smith@gatech.edu> / 2010-02-21T10:56:59Z-0500
- Location:
- python
- Files:
-
- 2 modified
-
Makefile.in (modified) (1 diff)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
python/Makefile.in
r6af6786 rfadf11e 8 8 9 9 all: 10 $(PYTHON) setup.py build_ext $(DEBUGFLAGS) -I@top_builddir@/libcwiid -L@top_builddir@/libcwiid -lcwiid -lbluetooth10 $(PYTHON) setup.py build_ext $(DEBUGFLAGS) -I@top_builddir@/libcwiid -L@top_builddir@/libcwiid 11 11 12 12 install: -
python/setup.py
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 )
