mirror of
https://github.com/CartoDB/crankshaft.git
synced 2024-11-01 10:20:48 +08:00
bd2b190643
This makes it easier to change between pip/pip2 depending on the local environment
9 lines
389 B
Makefile
9 lines
389 B
Makefile
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
|
EXTENSION = crankshaft
|
|
PACKAGE = crankshaft
|
|
EXTVERSION = $(shell grep default_version $(SELF_DIR)/src/pg/$(EXTENSION).control | sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")
|
|
RELEASE_VERSION ?= $(EXTVERSION)
|
|
SED = sed
|
|
PIP = pip
|
|
NOSETESTS = nosetests
|