lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | #!/bin/sh |
| 2 | |
| 3 | cd ../../../../common/scripts |
| 4 | |
| 5 | |
| 6 | if [ "$1" = "help" ];then |
| 7 | make help |
| 8 | fi |
| 9 | |
| 10 | if [ "$1" = "tloader" ];then |
| 11 | make tloader |
| 12 | fi |
| 13 | |
| 14 | if [ "$1" = "zloader" ];then |
| 15 | make zloader |
| 16 | fi |
| 17 | |
| 18 | if [ "$1" = "uboot" ];then |
| 19 | make uboot |
| 20 | fi |
| 21 | |
| 22 | if [ "$1" = "zloaderclean" ];then |
| 23 | make zloaderclean |
| 24 | fi |
| 25 | |
| 26 | if [ "$1" = "tloaderclean" ];then |
| 27 | make tloaderclean |
| 28 | fi |
| 29 | |
| 30 | if [ "$1" = "loadersrcclean" ];then |
| 31 | make loadersrcclean |
| 32 | fi |
| 33 | |
| 34 | if [ "$1" = "ubootclean" ];then |
| 35 | make ubootclean |
| 36 | fi |
| 37 | |
| 38 | if [ "$1" = "ubootsrcclean" ];then |
| 39 | make ubootsrcclean |
| 40 | fi |
| 41 | |
| 42 | if [ "$1" = "klocwork" ];then |
| 43 | make klocwork |
| 44 | fi |
| 45 | |
| 46 | if [ "$1" = "covall" ];then |
| 47 | make covall |
| 48 | fi |
| 49 | |
| 50 | if [ "$1" = "coverity" ];then |
| 51 | make coverity |
| 52 | fi |
| 53 | |
| 54 | if [ "$1" = "cov_upload" ];then |
| 55 | make cov_upload |
| 56 | fi |
| 57 | |
| 58 | if [ "$1" = "cov_report" ];then |
| 59 | make cov_report |
| 60 | fi |
| 61 | |
| 62 | |