[Assorted-commits] SF.net SVN: assorted:[1560] sandbox/trunk/src/scala/Continuations.mk
Brought to you by:
yangzhang
From: <yan...@us...> - 2010-02-04 18:49:35
|
Revision: 1560 http://assorted.svn.sourceforge.net/assorted/?rev=1560&view=rev Author: yangzhang Date: 2010-02-04 18:49:25 +0000 (Thu, 04 Feb 2010) Log Message: ----------- added build file for Continuations example Added Paths: ----------- sandbox/trunk/src/scala/Continuations.mk Added: sandbox/trunk/src/scala/Continuations.mk =================================================================== --- sandbox/trunk/src/scala/Continuations.mk (rev 0) +++ sandbox/trunk/src/scala/Continuations.mk 2010-02-04 18:49:25 UTC (rev 1560) @@ -0,0 +1,9 @@ +CLASSPATH = /opt/scala-cont/continuations/build/build.library +all: Continuations.class +Continuations.class: Continuations.scala + fsc -Xplugin:/opt/scala-cont/continuations/build/pack/selectivecps-plugin.jar -deprecation -classpath $(CLASSPATH) $< +run: all + scala -classpath .:$(CLASSPATH) Continuations +clean: + rm -f Continuations.class +.PHONY: run clean This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |