#Author: 
#  Lorena G Rosas	
#  Assignment: #6 for EECS 370
#  Date due: 4/13/01
#  Class section: MTWF 10:00-10:50
#  System: g++ compiler on bert.eecs.uic.edu
#
 
MYAPP = My_Interface

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

	 
