Skip to content
Snippets Groups Projects
Commit ea779a59 authored by Sven Gestegård Robertz's avatar Sven Gestegård Robertz
Browse files

changed run script to avoid generating class files in lib/java

parent f93c60c6
Branches
Tags
No related merge requests found
...@@ -16,9 +16,9 @@ gcc -Wall -Werror -o example_encoder -I../../lib/c/2014 \ ...@@ -16,9 +16,9 @@ gcc -Wall -Werror -o example_encoder -I../../lib/c/2014 \
example.c \ example.c \
../../lib/c/liblabcomm2014.a || exit 1 ../../lib/c/liblabcomm2014.a || exit 1
javac -cp ../../lib/java:. *.java || exit 1 javac -cp ../../lib/java/labcomm.jar:. *.java || exit 1
# Run through all executables (c->java->Python) # Run through all executables (c->java->Python)
./example_encoder one two || exit 1 ./example_encoder one two || exit 1
java -cp ../../lib/java:. example_decoder_encoder example.encoded example.javaencoded || exit 1 java -cp ../../lib/java/labcomm.jar:. example_decoder_encoder example.encoded example.javaencoded || exit 1
PYTHONPATH=../../lib/python ./example_decoder.py example.javaencoded || exit 1 PYTHONPATH=../../lib/python ./example_decoder.py example.javaencoded || exit 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment