Skip to content

Commit c679619

Browse files
committed
Fixed makefile testing.
1 parent d04d41b commit c679619

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Makefile to help automate tasks
22
WD := $(shell pwd)
3-
PY := bin/python
4-
PIP := bin/pip
5-
PEP8 := bin/pep8
6-
NOSE := bin/nosetests
3+
PY := .env/bin/python
4+
PIP := .env/bin/pip
5+
PEP8 := .env/bin/pep8
6+
NOSE := .env/bin/nosetests
77

88

99
# ###########
@@ -24,14 +24,14 @@ all: venv develop
2424

2525
venv: bin/python
2626
bin/python:
27-
virtualenv .
27+
virtualenv .env
2828

2929
.PHONY: clean_venv
3030
clean_venv:
31-
rm -rf bin include lib local man
31+
rm -rf .env
3232

33-
develop: lib/python*/site-packages/bookie-api.egg-link
34-
lib/python*/site-packages/bookie-api.egg-link:
33+
develop: .env/lib/python*/site-packages/readability-lxml.egg-link
34+
.env/lib/python*/site-packages/readability-lxml.egg-link:
3535
$(PY) setup.py develop
3636

3737

0 commit comments

Comments
 (0)