diff options
author | Mattias Andrée <maandree@kth.se> | 2022-07-21 14:53:18 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-07-21 14:53:18 +0200 |
commit | 3be28b4e8f75190d30e311f0e69da714cac62cc5 (patch) | |
tree | 95374a0ac30802f838e0fee1d7c686b66dd26b11 /config.mk | |
parent | Remove dist (diff) | |
download | pylibgamma-3be28b4e8f75190d30e311f0e69da714cac62cc5.tar.gz pylibgamma-3be28b4e8f75190d30e311f0e69da714cac62cc5.tar.bz2 pylibgamma-3be28b4e8f75190d30e311f0e69da714cac62cc5.tar.xz |
Change license to ISC, change style, improve makefile1.1.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | config.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..51eba37 --- /dev/null +++ b/config.mk @@ -0,0 +1,10 @@ +PREFIX = /usr + +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) + +CC = c99 + +CPPFLAGS = +CFLAGS = +LDFLAGS = -lgamma |