Commit 55802684 authored by Dominik Charousset's avatar Dominik Charousset

updated scala Makefile

parent 30ac7922
CC=scalac
LIBPATH=/home/neverlord/akka-2.0.1/lib/akka
CLASSPATH=$(shell for i in $(LIBPATH)/*.jar ; do printf %s $$i: ; done)
FLAGS=-cp $(CLASSPATH)
FILES=ActorCreation.scala Distributed.scala MailboxPerformance.scala MixedCase.scala
CLASSES=$(FILES:.scala=.class)
%.class: %.scala
$(CC) $(FLAGS) $<
all: $(CLASSES)
clean:
rm -f *.class
.PHONY: all clean
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment