Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - git-porno - Git Porno
git clone git://bitreich.org/git-porno git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrin…
Log
Files
Refs
Tags
README
LICENSE
---
Makefile (950B)
---
1 # See LICENSE file for copyright and license details.
2 .POSIX:
3
4 NAME = git-porno
5 VERSION = 0.1
6 MEDIA =\
7 media/git-add.opus\
8 media/git-checkout.opus\
9 media/git-cherry-pick.opus\
10 media/git-diff.opus\
11 media/git-log.opus\
12 media/git-pull.opus\
13 media/git-push.opus\
14 media/git-reset.opus\
15 media/git-shortlog.opus\
16
17 # Customize below to fit your system
18
19 # paths
20 PREFIX = /usr/local
21
22 all:
23 @printf "Please use make install.\n"
24
25 dist:
26 mkdir -p ${NAME}-${VERSION}
27 cp -R LICENSE Makefile README.md ${NAME} \
28 ${NAME}-${VERSION}
29 tar -cf ${NAME}-${VERSION}.tar ${NAME}-${VERSION}
30 gzip ${NAME}-${VERSION}.tar
31 rm -rf ${NAME}-${VERSION}
32
33 install:
34 mkdir -p "${DESTDIR}${PREFIX}/bin"
35 cp ${NAME} "${DESTDIR}${PREFIX}/bin"
36 mkdir -p "${DESTDIR}${PREFIX}/share/${NAME}"
37 cp -f ${MEDIA} ${DESTDIR}${PREFIX}/share/${NAME}/
38
39 uninstall:
40 rm -f "${DESTDIR}${PREFIX}/bin/${NAME}"
41 rm -rf "${DESTDIR}${PREFIX}/share/${NAME}/"
42
43 .PHONY: all dist install uninstall
44
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.