drgn/.gitignore
Omar Sandoval 687ea74ff2 Build Python bindings with automake
I went back and forth on using setuptools or autotools for the Python
extension, but I eventually settled on using only setuptools after
fighting to get the two to integrate well. However, setuptools is kind
of crappy; for one, it rebuilds every source file when rebuilding the
extension, which is really annoying for development. automake is a
better designed build system overall, so let's use that for the
extension. We override the build_ext command to build using autotools
and copy things where setuptools expects them.
2019-04-03 17:00:53 -07:00

11 lines
99 B
Plaintext

*.pyc
*.so
/.coverage
/.mypy_cache
/build
/coverage.info
/dist
/drgn.egg-info
/htmlcov
__pycache__