mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
20 lines
569 B
Bash
Executable File
20 lines
569 B
Bash
Executable File
#!/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 datadesk_like examples/datadesk_like_template.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
|