Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
INVENV = $(shell pip3 -V | grep 'venv')
current_dir = $(shell pwd)
chb.pdf: chb_pp.md headings.tex
pandoc chb_pp.md -s -o chb.pdf
chb.tex: chb_pp.md
pandoc chb_pp.md -s -o chb.tex
chb_pp.md: chb.yml chb.md
j2 chb.md chb.yml > chb_pp.md
clean:
-rm ./chb_pp.md chb.pdf
prereqs: venvcheck FORCE
pip install -r requirements.txt
venv: FORCE
python3 -m venv venv
venvcheck:
ifeq ($(INVENV),)
$(error You should only run this from within the venv. Use '. ./venv/bin/activate')
else
@echo "venv check passed\n"
endif
FORCE: