Introduction
Introduction Statistics Contact Development Disclaimer Help
Makefile - potcasse - Podcast publication made easy
git clone git://bitreich.org/potcasse git://hg6vgqziawt5s4dj.onion/potcasse
Log
Files
Refs
Tags
README
LICENSE
---
Makefile (527B)
---
1 # potcasse – podcast self hosting made easy
2 # See the LICENSE file for copyright and license details.
3 .POSIX:
4
5 VERSION = 0.1
6
7 BIN = potcasse
8 PREFIX = /usr
9 BINDIR = ${PREFIX}/bin
10
11 all:
12
13 install:
14 @echo installing executable to "${DESTDIR}${PREFIX}/bin"
15 @mkdir -p "${DESTDIR}${BINDIR}"
16 @cp -f "${BIN}" "${DESTDIR}${BINDIR}/${BIN}"
17 @chmod 555 "${DESTDIR}${BINDIR}/${BIN}"
18
19 uninstall:
20 @echo removing executable file from "${DESTDIR}${PREFIX}/bin"
21 @rm -f "${DESTDIR}${BINDIR}/${BIN}"
22
23 .PHONY: all install uninstall clean
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.