/
niceSOFT
/
make
Обзор
Документация
Войти
/
niceSOFT
/
make
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/scripts/variables/MAKECMDGOALS
21 строка
605 B
Paul Smith
* tests/scripts/*: Switch TAB chars to #TAB# markup
24 авг 2025, 21:29
24 авг 2025, 21:29
fdcaaed
Код
Авторство
О чём код?
# -*-perl-*- $description = "Test the MAKECMDGOALS variable."; $details = "\ We construct a makefile with various targets, all of which print out \$(MAKECMDGOALS), then call it different ways."; run_make_test(q! .DEFAULT all: #TAB#@echo $(MAKECMDGOALS) !, '', "\n"); run_make_test(undef, "all", "all\n"); run_make_test(undef, "foo bar baz yaz", "foo bar baz yaz\nfoo bar baz yaz\nfoo bar baz yaz\nfoo bar baz yaz\n"); # This tells the test driver that the perl test script executed properly. 1;