# Rudimentary Makefile for the FORG
#
# David Allen <s2mdalle@titan.vcu.edu>
#
# Running ./forg.py hostname is sufficient to run the program, so don't 
# use make at all unless you know what this does.  :)
###############################################################################

PYTHON  = /usr/bin/python
RM      = /bin/rm -f
CONFDIR = "$(HOME)/.forg"

all:
	$(PYTHON) forg.py
clean:	
	$(RM) *.pyc *~

restore:	clean
	$(RM) -r $(CONFDIR)/cache
	echo "Done"
