This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
ArnostiPublico
/
pdfScale
Watch
2
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Makefile to install in /usr/local/bin/pdfscale
to make installation and uninstallation easier
master
Gustavo Arnosti Neves
9 years ago
committed by
GitHub
parent
1a7a4d94f4
commit
8f40279a8f
1 changed files
with
16 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+16
-0
Makefile
+ 16
- 0
Makefile
View File
@@ -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)
Write
Preview
Loading…
Cancel
Save