Changeset 1441
- Timestamp:
- 11/23/07 00:39:28 (9 months ago)
- Files:
-
- libemu/trunk/Makefile.am (modified) (1 diff)
- libemu/trunk/bindings (added)
- libemu/trunk/bindings/Makefile.am (added)
- libemu/trunk/bindings/python (moved) (moved from libemu/trunk/python)
- libemu/trunk/bindings/python/Makefile.am (added)
- libemu/trunk/bindings/python/setup.py (modified) (1 diff)
- libemu/trunk/configure.ac (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libemu/trunk/Makefile.am
r1424 r1441 3 3 AUTOMAKE_OPTIONS = foreign 4 4 5 SUBDIRS = src include testsuite doc 5 SUBDIRS = src include testsuite doc bindings 6 6 7 7 libemu/trunk/bindings/python/setup.py
r1439 r1441 5 5 libemu = Extension('libemu', 6 6 sources = ['libemu_module.c'], 7 include_dirs = ['../ include'],7 include_dirs = ['../../include'], 8 8 library_dirs = ['/opt/libemu/lib/libemu'], 9 9 libraries = ['emu'], libemu/trunk/configure.ac
r1436 r1441 136 136 137 137 138 dnl ************************************************** 139 dnl * python bindings * 140 dnl ************************************************** 141 142 AC_ARG_ENABLE([python-bindings], 143 [ --enable-python-bindings Compile bindings for Python], 144 [case "${enableval}" in 145 yes) enable_python=true ;; 146 no) enable_python=false ;; 147 *) AC_MSG_ERROR([bad value ${enableval} for --enable-bython-bindings]) ;; 148 esac], 149 [enable_python=false]) 150 151 AM_CONDITIONAL([ENABLE_PYTHON_BINDINGS], [test x$enable_python = xtrue]) 152 138 153 139 154 … … 174 189 testsuite/Makefile 175 190 doc/Makefile 176 libemu.pc]) 191 libemu.pc 192 bindings/Makefile 193 bindings/python/Makefile]) 177 194 178 195 179 196 AC_OUTPUT 180 197 198 echo 199 echo "*** libemu configuration ***" 200 echo "general" 201 echo " - interactive hooks : $enable_interactive_hooks" 202 echo "" 203 echo "bindings" 204 echo " - python : $enable_python"
