1
0
mirror of https://github.com/eddelbuettel/binb synced 2024-05-28 16:10:03 +02:00
binb/docs/Makefile
Dirk Eddelbuettel 40dd112824 release 0.0.2
2018-09-27 09:26:14 -05:00

21 lines
508 B
Makefile

## Simple Makefile to create animated gif files from pdf files
##
## Special thanks to Mikko Korpela for the hint concerning the 'density'
## option in pull request #5 resulting in much crisper gif files
##
## Dirk Eddelbuettel, Sep 2018, GPL-2'ed
pdfs = $(shell ls *pdf)
gifs = $(pdfs:.pdf=.gif)
all: ${gifs}
%.gif: %.pdf
convert -density 127 -delay 200 $< $@
minimalpdfs = $(shell ls *minimal.pdf | grep -v binb_minimal.pdf)
combo:
convert -density 127 -delay 100 ${minimalpdfs} binb_minimal.gif