Skip to content

Commit

Permalink
Fixed makefile, removed virtualenv
Browse files Browse the repository at this point in the history
  • Loading branch information
faebser committed Jan 29, 2016
1 parent 751cd5b commit ffaac43
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

.PHONY: run
run: update install pistream.py
env/bin/python pistream.py
run: update pistream.py
python pistream.py


.PHONY: clean
Expand All @@ -12,14 +12,14 @@ update:
install: env/lib/python2.7/site-packages/enum env/lib/python2.7/site-packages/configparser.py


env/lib/python2.7/site-packages/enum: env
env/bin/pip install enum34==1.0.4
env/lib/python2.7/site-packages/enum:
pip install enum34==1.0.4

env/lib/python2.7/site-packages/configparser.py: env
env/bin/pip install configparser==3.3.0r2
env/lib/python2.7/site-packages/configparser.py:
pip install configparser==3.3.0r2

env/lib/python2.7/site-packages/RPi: env
env/bin/pip install RPi.GPIO
env/lib/python2.7/site-packages/RPi:
pip install RPi.GPIO

env:
virtualenv env

0 comments on commit ffaac43

Please sign in to comment.