stagit

Personal fork of stagit.
git clone git://git.samirparikh.com/stagit
Log | Files | Refs | README | LICENSE

commit e0b2835a28c1e00b471dd88b0a35bfe1eda8a71d
parent aaa0897f7d89e54e3c21384ec11a786c4ebf2866
Author: Samir Parikh <siparikh@gmail.com>
Date:   Fri, 12 Nov 2021 16:20:08 -0500

update Makefile to reflect changes in logo and favicon file types

Diffstat:
MMakefile | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile @@ -53,7 +53,7 @@ dist: rm -rf ${NAME}-${VERSION} mkdir -p ${NAME}-${VERSION} cp -f ${MAN1} ${HDR} ${SRC} ${COMPATSRC} ${DOC} \ - Makefile favicon.ico logo.svg style.css \ + Makefile favicon.png logo.png style.css \ example_create.sh example_post-receive.sh \ ${NAME}-${VERSION} # make tarball @@ -80,8 +80,8 @@ install: all # installing example files. mkdir -p ${DESTDIR}${DOCPREFIX} cp -f style.css\ - favicon.ico\ - logo.svg\ + favicon.png\ + logo.png\ example_create.sh\ example_post-receive.sh\ README.md\ @@ -97,8 +97,8 @@ uninstall: # removing example files. rm -f \ ${DESTDIR}${DOCPREFIX}/style.css\ - ${DESTDIR}${DOCPREFIX}/favicon.ico\ - ${DESTDIR}${DOCPREFIX}/logo.svg\ + ${DESTDIR}${DOCPREFIX}/favicon.png\ + ${DESTDIR}${DOCPREFIX}/logo.png\ ${DESTDIR}${DOCPREFIX}/example_create.sh\ ${DESTDIR}${DOCPREFIX}/example_post-receive.sh\ ${DESTDIR}${DOCPREFIX}/README.md