aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-07-02 20:02:04 +0200
committerMattias Andrée <maandree@kth.se>2023-07-02 20:02:04 +0200
commitc2d241eed42c85e58df18889165d3802c84a8ed7 (patch)
treec8d317633ff5de2bdd1f1a23c09c89002217fa8b /config.mk
parentChange license to ISC, change style, improve makefile (diff)
downloadpylibgamma-1.1.3.1.tar.gz
pylibgamma-1.1.3.1.tar.bz2
pylibgamma-1.1.3.1.tar.xz
Improve makefile1.1.3.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk15
1 files changed, 11 insertions, 4 deletions
diff --git a/config.mk b/config.mk
index 51eba37..c404ee7 100644
--- a/config.mk
+++ b/config.mk
@@ -1,10 +1,17 @@
PREFIX = /usr
-PYTHON_MAJOR = $$(python --version 2>&1 | cut -d . -f 1 | cut -d ' ' -f 2)
+PYTHON_MAJOR = $$(python --version 2>&1 | cut -d ' ' -f 2 | cut -d . -f 1)
PYTHON_MINOR = $$(python$(PYTHON_MAJOR) --version 2>&1 | cut -d . -f 2)
-CC = c99
+PYTHON_VERSION = $(PYTHON_MAJOR).$(PYTHON_MINOR)
+PYTHON_VER = $(PYTHON_MAJOR)$(PYTHON_MINOR)
+PYTHON_DIR = $(PREFIX)/lib/python$(python_version)/site-packages
+PYTHON_CACHE = $(python_dir)/__pycache__
+
+CC = c99
+CYTHON = cython$(PYTHON_MAJOR)
+PYTHON = python$(PYTHON_MAJOR)
CPPFLAGS =
-CFLAGS =
-LDFLAGS = -lgamma
+CFLAGS =
+LDFLAGS = -lgamma