Skip to content
Snippets Groups Projects
Commit aedbe5d9 authored by Daniel Lyons's avatar Daniel Lyons
Browse files

Add a basic Makefile that builds all the conda packages for us

parent 7f5578d2
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
all: ${HOME}/miniconda3 ${HOME}/miniconda3/envs/data metadata build
${HOME}/miniconda3:
@echo Please install miniconda to ${HOME}/miniconda3
@exit 1
${HOME}/miniconda3/envs/data: environment.yml
conda env update
touch $@
.PHONY: metadata
metadata:
buildout parts=gen_metadata
.PHONY: build
build:
pushd metadata; for package in *; do conda build $${package}; done; popd
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment