all: javac -d . *.java run: all @@echo "Running Protected:" @@java thisone.Protected @@echo @@echo "Running SubProtected:" @@java thatone.SubProtected @@echo @@echo "Running Alongsider:" @@java another.Alongsider @@echo @@echo "Running SamePackageDweller:" @@java thisone.SamePackageDweller clean: rm -rf thisone thatone another