You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
309 B
20 lines
309 B
include Makefile.conf
|
|
|
|
.PHONY: all build clean devenv envtest
|
|
|
|
all: build_ext
|
|
|
|
build_ext:
|
|
python3 setup.py build_ext $(BUILD_EXT_OPTS)
|
|
|
|
clean:
|
|
rm -r $(BUILD_DIR)
|
|
|
|
devenv:
|
|
LD_LIBRARY_PATH=$(PREFIX)/lib \
|
|
PYTHONPATH=`pwd`/build/lib.linux-x86_64-3.7:\
|
|
`pwd`/src \
|
|
bash -l
|
|
|
|
envtest:
|
|
python3 -c 'import pEp'
|