Update of /cvsroot/aaron/aaron/src
In directory usw-pr-cvs1:/tmp/cvs-serv643
Added Files:
Makefile
Log Message:
And one Makefile to bind them all....
--- NEW FILE: Makefile ---
# $Id: Makefile,v 1.1 2001/06/29 02:10:11 thetitan Exp $
help:
@echo "Usage:"
@echo ""
@echo " help: This message"
@echo " run: Runs aaron from current current directory"
@echo " tests: Runs a regression test for aaron"
run:
@echo "Running aaron..."
@echo ""
@./main/aaron.rb
@echo ""
@echo "aaron stopped."
tests:
@make -f test/Makefile
|