forked from pEp.foundation/pEpPythonAdapter
Makefile, add targets: dist, dist-whl, dist-egg, install, install-prefix, install-sys
parent
fd03e4b75c
commit
179a82f184
@ -1,15 +1,18 @@
|
||||
HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
|
||||
|
||||
# Defaults
|
||||
# Constants
|
||||
BUILD_DIR = ./build
|
||||
DIST_DIR = ./dist
|
||||
|
||||
# Build config Defaults
|
||||
DEBUG=0
|
||||
PREFIX?=$(HOME)
|
||||
BUILD_DIR = ./build
|
||||
|
||||
######### Overrides #########
|
||||
-include $(HERE)local.conf
|
||||
|
||||
ifeq ($(DEBUG),1)
|
||||
BUILD_EXT_OPTS+=--debug
|
||||
DEBUG_OPT+=--debug
|
||||
endif
|
||||
|
||||
BUILD_EXT_OPTS += --prefix=$(PREFIX)
|
||||
PREFIX_OPT += --prefix=$(PREFIX)
|
Loading…
Reference in New Issue