mirror of
https://github.com/jrconlin/oauthsimple.git
synced 2026-07-28 04:06:51 +00:00
13 lines
202 B
Makefile
13 lines
202 B
Makefile
TOP = $(shell pwd)
|
|
VE = virtualenv
|
|
PY = $(TOP)/bin/python
|
|
EZ = $(TOP)/bin/easy_install
|
|
|
|
.PHONY: build build-egg
|
|
|
|
build:
|
|
$(VE) --no-site-packages .
|
|
|
|
build-egg:
|
|
$(PY) setup.py bdist_egg -dist-dir dist
|