| #!/bin/sh |
| |
| cd ../../../../common/scripts |
| |
| |
| if [ "$1" = "help" ];then |
| make help |
| fi |
| |
| if [ "$1" = "tloader" ];then |
| make tloader |
| fi |
| |
| if [ "$1" = "zloader" ];then |
| make zloader |
| fi |
| |
| if [ "$1" = "uboot" ];then |
| make uboot |
| fi |
| |
| if [ "$1" = "zloaderclean" ];then |
| make zloaderclean |
| fi |
| |
| if [ "$1" = "tloaderclean" ];then |
| make tloaderclean |
| fi |
| |
| if [ "$1" = "loadersrcclean" ];then |
| make loadersrcclean |
| fi |
| |
| if [ "$1" = "ubootclean" ];then |
| make ubootclean |
| fi |
| |
| if [ "$1" = "ubootsrcclean" ];then |
| make ubootsrcclean |
| fi |
| |
| if [ "$1" = "klocwork" ];then |
| make klocwork |
| fi |
| |
| if [ "$1" = "covall" ];then |
| make covall |
| fi |
| |
| if [ "$1" = "coverity" ];then |
| make coverity |
| fi |
| |
| if [ "$1" = "cov_upload" ];then |
| make cov_upload |
| fi |
| |
| if [ "$1" = "cov_report" ];then |
| make cov_report |
| fi |
| |
| |