shell

来自「Linux 下的编译工具」· 代码 · 共 24 行

TXT
24
字号
#                                                                    -*-perl-*-$description = 'Test the $(shell ...) function.';$details = '';# Test shells inside rules.run_make_test('.PHONY: allall: ; @echo $(shell echo hi)','','hi');# Test shells inside exported environment variables.# This is the test that fails if we try to put make exported variables into# the environment for a $(shell ...) call.run_make_test('export HI = $(shell echo hi).PHONY: allall: ; @echo $$HI','','hi');1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?