rename examples build/run scripts

This commit is contained in:
Allen Webster
2021-09-02 18:52:05 -07:00
parent 47b5e0bf72
commit cae86313c6
2 changed files with 58 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/bin/bash
###### Get Paths ##############################################################
og_path=$PWD
cd "$(dirname "$0")"
cd ..
###### Script #################################################################
echo "~~~ Build All Exampes ~~~"
bin/bld_core.sh show_ctx
bin/bld_core.sh unit old_style_custom_layer examples/old_style_custom_layer.c
bin/bld_core.sh unit output_parse examples/output_parse/output_parse.c
bin/bld_core.sh unit c_code_generation examples/c_code_generation.c
bin/bld_core.sh unit node_errors examples/node_errors/node_errors.c
bin/bld_core.sh unit parse_check examples/parse_check.c
echo
###### Restore Path ###########################################################
cd $og_path