11 lines
151 B
Makefile
11 lines
151 B
Makefile
|
|
||
|
venv:
|
||
|
virtualenv venv.garminexport
|
||
|
|
||
|
init:
|
||
|
pip install -r requirements.txt
|
||
|
|
||
|
clean:
|
||
|
find -name '*~' -exec rm {} \;
|
||
|
find -name '*pyc' -exec rm {} \;
|