Uboot makefile

it2023-11-30  74

一,新建工程后,新建一个名为“settings.json”的文件     其中"search.exclude"里面是需要在搜索结果中排除的文件或者文件夹,"files.exclude"是左 侧工程目录中需要排除的文件或者文件夹     settings.json 文件代码     { "search.exclude":         {"**/node_modules": true,          "**/bower_components": true,          },       "files.exclude":          {"**/.git": true,           "**/.svn": true,           "**/.hg": true,          "**/CVS": true,          "**/.DS_Store": true,          }     } 二、makefile文件     1.origin 用于告诉你变量是哪来的,语法为:         $(origin <variable>)     2.sym 命令分为“quiet_cmd_sym”和“cmd_sym”两个版本,这两个命令的功能都是一样的,     区别在于 make 执行的时候输出的命令不同。quiet_cmd_xxx 命令输出信息少,也就是短命令,     而 cmd_xxx 命令输出信息多,也就是完整的命令。         如果变量 quiet 为空的话,整个命令都会输出。      

最新回复(0)