#! /usr/bin/make

CP=/bin/cp
INSTALL=/usr/bin/install
RM=/bin/rm
TAR=/bin/tar


clean:
	$(RM) -f *.pyc interface/*.bak *~
	$(RM) -f code/*.pyc code/*~

release:
	find . -iname "CVS" -exec $(RM) -rf {} \;

snapshot:
	cd .. && $(TAR) -jcf orange-slice-snapshot.tar.bz2 orange-slice/

install:
	# nothing to do for now ...

all:
	# nothing to do for now ...
