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