CC=javac

all:			MythRemote.class

MythRemote.class:	MythRemote.java
			$(CC) MythRemote.java

clean:
			rm -f MythRemote.class
