diff options
author | Mattias Andrée <maandree@kth.se> | 2021-09-16 18:40:29 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-09-16 18:40:29 +0200 |
commit | 8ec98c0d9ac5b42d9157cc1f2d5160a07fac16e8 (patch) | |
tree | 0af582bc09df319147f8bdc62f19745aaeb95a4c /config.mk | |
parent | First commit (diff) | |
download | python-arg-8ec98c0d9ac5b42d9157cc1f2d5160a07fac16e8.tar.gz python-arg-8ec98c0d9ac5b42d9157cc1f2d5160a07fac16e8.tar.bz2 python-arg-8ec98c0d9ac5b42d9157cc1f2d5160a07fac16e8.tar.xz |
Improve makefile1.0.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | config.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..08768f8 --- /dev/null +++ b/config.mk @@ -0,0 +1,9 @@ +PREFIX = /usr +PYTHONDIR = $(PREFIX)/lib/python$(PYTHON_VERSION) +PYTHONPKGDIR = $(PYTHONDIR)/site-packages + +PYTHON_MAJOR = $$(python --version 2>&1 | cut -d . -f 1 | cut -d ' ' -f 2) +PYTHON_MINOR = $$(python$(PYTHON_MAJOR) --version 2>&1 | cut -d . -f 2) +PYTHON_VERSION = $(PYTHON_MAJOR).$(PYTHON_MINOR) + +PYTHON = python$(PYTHON_VERSION) |