Преглед изворни кода

Makefile to install in /usr/local/bin/pdfscale

to make installation and uninstallation easier
master
Gustavo Arnosti Neves пре 9 година
committed by GitHub
родитељ
комит
8f40279a8f
1 измењених фајлова са 16 додато и 0 уклоњено
  1. +16
    -0
      Makefile

+ 16
- 0
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)

Loading…
Откажи
Сачувај