diff options
author | Mattias Andrée <maandree@kth.se> | 2021-02-19 20:30:41 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-02-19 20:30:49 +0100 |
commit | c27fd70b5e4c3efe5ad034069108414d36f9bd9e (patch) | |
tree | ec0befb659ebeca4a68c45b052e713fb2ad26f05 /config.mk | |
parent | improve readme (diff) | |
download | python-bus-3.1.2.tar.gz python-bus-3.1.2.tar.bz2 python-bus-3.1.2.tar.xz |
some improvments + license change3.1.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-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..e45ec85 --- /dev/null +++ b/config.mk @@ -0,0 +1,10 @@ +PREFIX = /usr/local +MANPREFIX = $(PREFIX)/share/man +PYTHONDIR = $(PREFIX)/lib/python$(PY_MAJOR).$(PY_MINOR) + +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOUCE -D_XOPEN_SOURCE=700 +CFLAGS = -std=c99 -O2 $$(pkg-config --cflags python$(PY_MAJOR)) $(CPPFLAGS) +LDFLAGS = -s $$(pkg-config --libs python$(PY_MAJOR)) -lbus + +CYTHON = cython +PYTHON = python$(PY_MAJOR) |