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
438 B
20 lines
438 B
HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
|
|
|
|
# Constants
|
|
BUILD_DIR = ./build
|
|
DIST_DIR = ./dist
|
|
BUILD_INPLACE = ./src/synth_shed/syth_shed.cpython-38-darwin.so
|
|
PYTHON_ARTIFACTS += ./.eggs
|
|
PYTHON_ARTIFACTS += ./src/syth_shed.egg-info
|
|
PYTHON_ARTIFACTS += ./.pytest_cache
|
|
VENV_DIR = ./venv
|
|
|
|
# Build config Defaults
|
|
PREFIX=
|
|
|
|
######### Overrides #########
|
|
-include $(HERE)local.conf
|
|
|
|
ifneq ($(PREFIX),)
|
|
PREFIX_OPT += --prefix=$(PREFIX)
|
|
endif
|
|
|