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.
10 lines
288 B
10 lines
288 B
HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
# Constants
|
|
BUILD_DIR = ./build
|
|
DIST_DIR = ./dist
|
|
BUILD_INPLACE = ./synth_shed/syth_shed.cpython-38-darwin.so
|
|
PYTHON_ARTIFACTS += ./.eggs
|
|
PYTHON_ARTIFACTS += ./synth_shed.egg-info
|
|
PYTHON_ARTIFACTS += ./.pytest_cache
|
|
VENV_DIR = ./venv_synth_shed
|
|
|