scala/ScalaBook/chapter-06/hello3.mk

all:
    rm -f hello3.jar *.class
    scalac hello3.scala
    jar cvf hello3.jar *.class
    rm *.class