ocarina/Makefile
Bryan Schumaker 30cb8298b1 Force ln
When installing, force ln to work (even if /usr/bin/ocarina already
exists)
2010-11-04 10:07:03 -04:00

17 lines
290 B
Makefile

all:
python2 ocarina.py
clean:
rm `find . | grep .pyc`
install:
cd /opt/ && git clone http://lavos.homelinux.com/~bjschuma/git/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