scala/ScalaBook/chapter-06/hello2.mk

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