chore: Makefile cleanup sod

main
Sean McBride 4 years ago
parent 794baeaf2f
commit c1b5cdaf5c

@ -28,9 +28,9 @@ gocr:
cp ./gocr/src/gocr.so ${SLEDGE_BIN_DIR}/gocr_wasm.so cp ./gocr/src/gocr.so ${SLEDGE_BIN_DIR}/gocr_wasm.so
sod: sod:
make clean all samples samples.wasm -C ./sod/ make clean dir samples.so -C ./sod/
cp ./sod/bin/license_plate_detection.awsm /sledge/runtime/bin/lpd_wasm.so cp ./sod/bin/license_plate_detection.so /sledge/runtime/bin/lpd_wasm.so
cp ./sod/bin/resize_image.awsm /sledge/runtime/bin/resize_wasm.so cp ./sod/bin/resize_image.so /sledge/runtime/bin/resize_wasm.so
%_rt: %_rt:
@mkdir -p ${TMP_DIR} @mkdir -p ${TMP_DIR}

@ -1 +1 @@
Subproject commit 3bbad277b334744595a64b193e6df6d5d31d9dfd Subproject commit 9728147fe396ab7946909ab0155c4c6dd77ea082

@ -16,31 +16,31 @@ cd "$base_dir/runtime" && make clean all || exit 1
# OCR Build # OCR Build
# FIXME: gocr incorectly reports up to date # FIXME: gocr incorectly reports up to date
cd "$base_dir/runtime/tests" && make -B clean gocr || exit 1 # cd "$base_dir/runtime/tests" && make -B clean gocr || exit 1
# OCR Tests # OCR Tests
cd "$base_dir/runtime/experiments/applications/ocr/hyde" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/hyde" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/handwriting" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/handwriting" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/fivebyeight" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/fivebyeight" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./install.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./install.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/by_word" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./install.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./install.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/by_font" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./install.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./install.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ocr/by_dpi" && ./run.sh || exit 1
# EKF Build # EKF Build
cd "$base_dir/runtime/tests" && make -B clean tinyekf || exit 1 # cd "$base_dir/runtime/tests" && make -B clean tinyekf || exit 1
# EKF Tests # EKF Tests
cd "$base_dir/runtime/experiments/applications/ekf/by_iteration" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ekf/by_iteration" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/ekf/one_iteration" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/ekf/one_iteration" && ./run.sh || exit 1
# cifar10 Build # cifar10 Build
cd "$base_dir/runtime/tests" && make -B clean cifar10 || exit 1 # cd "$base_dir/runtime/tests" && make -B clean cifar10 || exit 1
# cifar10 Tests # cifar10 Tests
cd "$base_dir/runtime/experiments/applications/imageclassification" && ./run.sh || exit 1 # cd "$base_dir/runtime/experiments/applications/imageclassification" && ./run.sh || exit 1
# sod Build # sod Build
cd "$base_dir/runtime/tests" && make -B clean sod || exit 1 cd "$base_dir/runtime/tests" && make -B clean sod || exit 1
@ -51,4 +51,3 @@ cd "$base_dir/runtime/experiments/applications/imageresize/test" && ./run.sh ||
cd "$base_dir/runtime/experiments/applications/imageresize/by_resolution" && ./install.sh || exit 1 cd "$base_dir/runtime/experiments/applications/imageresize/by_resolution" && ./install.sh || exit 1
cd "$base_dir/runtime/experiments/applications/imageresize/by_resolution" && ./run.sh || exit 1 cd "$base_dir/runtime/experiments/applications/imageresize/by_resolution" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/licenseplate/by_plate_count" && ./run.sh || exit 1 cd "$base_dir/runtime/experiments/applications/licenseplate/by_plate_count" && ./run.sh || exit 1
cd "$base_dir/runtime/experiments/applications/licenseplate" && ./run.sh || exit 1

Loading…
Cancel
Save