Skip to content

Commit

Permalink
Force vis.jar to be compiled using Java 5
Browse files Browse the repository at this point in the history
Former-commit-id: 299d0c9a05186911bee63273c19b2d39009c9528
  • Loading branch information
Suzanne Millstein committed Nov 1, 2012
1 parent 3c3c4ae commit 435af3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/src/vis/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SOURCES = $(wildcard src/*.java)


bin/vis.jar: $(SOURCES) classes
javac -d ./classes -classpath $(TOOLS_SRC)/contrib/jogl/jogl.jar:$(TOOLS_SRC)/common/bin/tau-common.jar $(SOURCES)
javac -target 1.5 -source 1.5 -d ./classes -classpath $(TOOLS_SRC)/contrib/jogl/jogl.jar:$(TOOLS_SRC)/common/bin/tau-common.jar $(SOURCES)
jar -cvf bin/vis.jar -C ./classes edu
cp bin/vis.jar $(TAUROOT)/$(CONFIG_ARCH)/lib

Expand Down

0 comments on commit 435af3e

Please sign in to comment.