diff options
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | makebookpdf.sh | 5 | ||||
-rwxr-xr-x | makepdf.sh | 4 |
3 files changed, 6 insertions, 5 deletions
@@ -5,7 +5,7 @@ NAME = getxbook SRC = getgbook.c LIB = util.o -SCRIPTS = getgmissing.sh makepdf.sh +SCRIPTS = getgmissing.sh makebookpdf.sh BIN = $(SRC:.c=) OBJ = $(SRC:.c=.o) $(LIB) diff --git a/makebookpdf.sh b/makebookpdf.sh new file mode 100755 index 0000000..80e776f --- /dev/null +++ b/makebookpdf.sh @@ -0,0 +1,5 @@ +#!/bin/sh +# See COPYING file for copyright and license details. +# Requires imagemagick + +convert *.png book.pdf diff --git a/makepdf.sh b/makepdf.sh deleted file mode 100755 index f8d852b..0000000 --- a/makepdf.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -# requires imagemagick - -convert *.png book.pdf |