Commit 4c03e3ba authored by Julien Jerphanion's avatar Julien Jerphanion

Add a Makefile target

parent 47dd1094
...@@ -25,14 +25,19 @@ help: Makefile ...@@ -25,14 +25,19 @@ help: Makefile
## all: Run the main targets ## all: Run the main targets
.PHONY: all .PHONY: all
all: install benchmark all: setup benchmark
## install: Install conda env. ## setup: Setup the conda environment
.PHONY: install .PHONY: setup
install: clean setup: clean
conda env create --force -f environment.yml conda env create --force -f environment.yml
${PIP_EXECUTABLE} install -e . -v ${PIP_EXECUTABLE} install -e . -v
## install: install the project in the env
.PHONY: install
install:
${PIP_EXECUTABLE} install -e . -v
# nopython: Build without the Python runtime # nopython: Build without the Python runtime
.PHONY: nopython .PHONY: nopython
nopython: $(EXE) nopython: $(EXE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment