You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
287 B
Makefile
12 lines
287 B
Makefile
GIT_CLONE = git clone --depth 1
|
|
calamari:
|
|
$(GIT_CLONE) https://github.com/chwick/calamari
|
|
|
|
calamari_models:
|
|
$(GIT_CLONE) https://github.com/chwick/calamari_models
|
|
|
|
calamari/build: calamari calamari_models
|
|
cd calamari &&\
|
|
pip install -r requirements.txt ;\
|
|
python setup.py install
|