diff options
author | Mattias Andrée <maandree@kth.se> | 2023-07-01 20:04:46 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-07-01 20:04:46 +0200 |
commit | 9dcbadac655a18d5da42857341b3517d1055c8dd (patch) | |
tree | 29fc2c63423637d095a628515d9ecae943922d99 /Makefile | |
parent | Improve makefile (diff) | |
download | python-bus-9dcbadac655a18d5da42857341b3517d1055c8dd.tar.gz python-bus-9dcbadac655a18d5da42857341b3517d1055c8dd.tar.bz2 python-bus-9dcbadac655a18d5da42857341b3517d1055c8dd.tar.xz |
Fix and improve makefile3.1.3.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ all: native_bus.so $(CC) -fPIC -c -o $@ $< $(CFLAGS) $(CPPFLAGS) .pyx.c: - if ! $(CYTHON) -$(PY_MAJOR) -v $< -o $@ ; then rm $@; false; fi + if ! $(CYTHON) -$(PYTHON_MAJOR) -v $< -o $@ ; then rm $@; false; fi install: native_bus.so mkdir -p -- "$(DESTDIR)$(PYTHONPKGDIR)" |