# ****************************************************************************
# * Author:       Jesus Medina
# * E-mail:       jmedina@eecs.uic.edu
# * Class:        EECS 370, MTWF 10-10:50am, Spring '01
# * Instructor:   Prof. Troy
# * Description:  MP6, GUI - Game User Interface (BB-GUY)
# *               This program is similar to pac-man.  The object of the game
# *               is to collect all the blue-berries layed out on the maze.
# *               
# ****************************************************************************
# 	Makefile to make and run a Java program from Java source code.
# 	Change the name of the MYAPP variable to use with a different
# 	input file. NOTE CAREFULLY that the javadoc command included 
# 	here will automatically create many web pages, including one 
# 	named $(MYAPP).html The run command should run the program 
# 	EITHER as an application or an applet, not both.

MYAPP = BB_GUY

run : $(MYAPP).class
	java $(MYAPP)


