URI: 
       Makefile - potcasse - Podcast publication made easy
  HTML git clone git://bitreich.org/potcasse git://hg6vgqziawt5s4dj.onion/potcasse
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR 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