소스 검색

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)

불러오는 중...
취소
저장