ocarina/Makefile
Bryan Schumaker 7012c9a9af Modified makefile
The makefile reflects my new way of installing from git (using the git
daemon instead of http).
2010-11-09 19:20:06 -05:00

17 lines
275 B
Makefile

all:
python2 ocarina.py
clean:
rm `find . | grep .pyc`
install:
cd /opt/ && git clone git://lavos.homelinux.com/ocarina.git
cd /usr/bin && ln -sf /opt/ocarina/bin/ocarina .
uninstall:
rm -rIf /opt/ocarina
rm -f /usr/bin/ocarina
update:
cd /opt/ocarina && git pull