1
0
Fork 0
mirror of https://github.com/eddelbuettel/binb synced 2025-07-03 20:06:43 +02:00

added docs/Makefile, updated ChangeLog and NEWS

This commit is contained in:
Dirk Eddelbuettel 2018-09-26 11:20:30 -05:00
parent 5e0337b55c
commit b58eb6132b
3 changed files with 31 additions and 3 deletions

15
docs/Makefile Normal file
View file

@ -0,0 +1,15 @@
## 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 = `ls *pdf`
gifs = $(pdfs:.pdf=.gif)
all: ${gifs}
%.gif: %.pdf
convert -density 127 -delay 200 $< $@