commit 787ebb0e40e5e89ce9d5d56dfdf7065a63b4abe5
parent 1b79c92e0a0eaf2d603b93620b50e0ef0dc757ed
Author: FRIGN <dev@frign.de>
Date: Tue, 3 Feb 2015 12:56:54 +0100
Add gif2if procedure to Makefile
Thanks to Henrique Lengler <henriqueleng@opmbx.org> for the patch!
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -43,14 +43,17 @@ clean:
install: all
@echo installing executable files to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
- @cp -f png2if if2png jpg2if ${DESTDIR}${PREFIX}/bin
+ @cp -f png2if jpg2if if2png gif2if ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/png2if
@chmod 755 ${DESTDIR}${PREFIX}/bin/jpg2if
@chmod 755 ${DESTDIR}${PREFIX}/bin/if2png
+ @chmod 755 ${DESTDIR}${PREFIX}/bin/gif2if
uninstall:
@echo removing executable files from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/png2if
+ @rm -f ${DESTDIR}${PREFIX}/bin/jpg2if
@rm -f ${DESTDIR}${PREFIX}/bin/if2png
+ @rm -f ${DESTDIR}${PREFIX}/bin/gif2if
.PHONY: all options clean install uninstall