#
# PySol Makefile
#

SHELL = /bin/sh

PYTHON = /usr/local/test/python-1.5.2-static/bin/python
PYTHON = python

default: test

test:
	$(PYTHON) -u -t pysol.py

testo:
	$(PYTHON) -O -u -t pysol.py

profile:
	$(PYTHON) /usr/lib/python1.5/profile.py pysol.py > profile.log

clean:
	-rm -f *.py[co] */*.py[co]
	-rm -f ../data/plugins/*.py[co]

idle:
##	/usr/doc/python/examples/Tools/idle/idle.py pysol.py
	/usr/local/python/cvs/python/dist/src/Tools/idle/idle.py pysol.py

.PHONY: default test testo profile clean idle

