16 lines
367 B
Makefile
16 lines
367 B
Makefile
SHELL=/bin/bash
|
|
.PHONY: default
|
|
|
|
default: all
|
|
|
|
bib: 03-supplementary_data/library
|
|
[ -f 03-supplementary_data/lib.bib ] && rm 03-supplementary_data/lib.bib
|
|
papis export -a -o 03-supplementary_data/lib.bib
|
|
|
|
render: concepts.md
|
|
quarto render
|
|
|
|
config: ~/documents/library/litrev-rahman
|
|
ln -s ~/documents/library/ilo-wow 03-supplementary_data/library
|
|
|
|
all: bib render
|