forked from StreetScienceCommunity/DNAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (44 loc) · 1.29 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
SHELL=bash
PORT?=4000
HOST?=0.0.0.0
CONDA_ENV = dnanalyzer
PDF_DIR=_pdf
PDF_HOST?=127.0.0.1
SITE_URL=http://${PDF_HOST}:${PORT}
PROTOCOLS=$(shell find _site/protocols/ -name 'index.html' | sed 's/_site\/protocols\///')
CONDA = $(shell which conda)
ifeq ($(CONDA),)
CONDA=${HOME}/miniconda3/bin/conda
endif
CHROME=google-chrome-stable
ifeq ($(shell uname -s),Darwin)
CHROME=/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome
endif
default: help
clean: ## cleanup the project
@rm -rf _site
@rm -rf .sass-cache
@rm -rf .bundle
@rm -rf vendor
.PHONY: clean
create-env: ## create conda environment
if ${CONDA} env list | grep '^${CONDA_ENV}'; then \
${CONDA} env update -f environment.yml; \
else \
${CONDA} env create -f environment.yml; \
fi
.PHONY: create-env
ACTIVATE_ENV = source $(dir ${CONDA})activate ${CONDA_ENV}
install: clean ## install dependencies
$(ACTIVATE_ENV) && \
npm install && \
gem install bundler && \
bundle install
.PHONY: install
serve: ## run a local server
$(ACTIVATE_ENV) && \
bundle exec jekyll serve --strict_front_matter -d _site/DNAnalyzer -P ${PORT} -H ${PDF_HOST} ${FLAGS}
.PHONY: serve
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: help