all-local:
GPIOD_VERSION_STRING=$(VERSION_STR) \
GPIOD_WITH_TESTS=$(BUILD_TESTS) \
- $(PYTHON) setup.py build_ext --inplace \
+ $(PYTHON) $(srcdir)/setup.py build_ext --inplace \
--include-dirs=$(top_srcdir)/include/:$(top_srcdir)/tests/gpiosim/ \
--library-dirs=$(top_builddir)/lib/.libs/:$(top_srcdir)/tests/gpiosim/.libs/
install-exec-local:
GPIOD_WITH_TESTS= \
- $(PYTHON) setup.py install --prefix=$(prefix)
+ $(PYTHON) $(srcdir)/setup.py install --prefix=$(prefix)
SUBDIRS = gpiod
# SPDX-License-Identifier: GPL-2.0-or-later
# SPDX-FileCopyrightText: 2022 Bartosz Golaszewski <brgl@bgdev.pl>
-from os import environ
+from os import environ, path
from setuptools import setup, Extension, find_packages
+def src(filename):
+ return path.join(path.dirname(__file__), filename)
+
gpiod_ext = Extension(
"gpiod._ext",
sources=[
- "gpiod/ext/chip.c",
- "gpiod/ext/common.c",
- "gpiod/ext/line-config.c",
- "gpiod/ext/line-settings.c",
- "gpiod/ext/module.c",
- "gpiod/ext/request.c",
+ src("gpiod/ext/chip.c"),
+ src("gpiod/ext/common.c"),
+ src("gpiod/ext/line-config.c"),
+ src("gpiod/ext/line-settings.c"),
+ src("gpiod/ext/module.c"),
+ src("gpiod/ext/request.c"),
],
define_macros=[("_GNU_SOURCE", "1")],
libraries=["gpiod"],
gpiosim_ext = Extension(
"tests.gpiosim._ext",
- sources=["tests/gpiosim/ext.c"],
+ sources=[src("tests/gpiosim/ext.c")],
define_macros=[("_GNU_SOURCE", "1")],
libraries=["gpiosim"],
extra_compile_args=["-Wall", "-Wextra"],
procname_ext = Extension(
"tests.procname._ext",
- sources=["tests/procname/ext.c"],
+ sources=[src("tests/procname/ext.c")],
define_macros=[("_GNU_SOURCE", "1")],
extra_compile_args=["-Wall", "-Wextra"],
)
extensions.append(gpiosim_ext)
extensions.append(procname_ext)
-with open("gpiod/version.py", "r") as fd:
+with open(src("gpiod/version.py"), "r") as fd:
exec(fd.read())
setup(