# makefile for herbrip

all: clean


# ``make clean'' removes all temporary files, to make the directory
# ready for distribution.
# Files removed are:
#    ~*, *~    temporary, created by editors
#    *.pyc     Python compiled files
#    tmp_*     created by running encwrap.py in debug mode
#    mess*     created by running test_herbrip.py

clean:
	rm -f ~*
	rm -f *~
	rm -f *.pyc
	rm -f tmp_*
	rm -f mess*

#end
