From 8f40279a8fb886a0f8aeedd37220bd35b52ee384 Mon Sep 17 00:00:00 2001 From: Gustavo Arnosti Neves Date: Sun, 10 Jul 2016 02:01:47 -0300 Subject: [PATCH] Makefile to install in /usr/local/bin/pdfscale to make installation and uninstallation easier --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..74fb8cf --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +# Installs to /usr/local/bin +# Change variables to adjust locations +# +# Jul 10 2016 - Gustavo Neves + +IDIR=/usr/local/bin +IFILE=$(IDIR)/pdfscale + +all: + +install: + cp pdfScale.sh $(IFILE) + chmod 755 $(IFILE) + +uninstall: + rm -f $(IFILE)