-2
下生成文件:關鍵字'|'在Makefile的先決條件
afl-fuzz: afl-fuzz.c | test_x86
gcc afl-fuzz.c -o afl-fuzz
什麼意思 '|' test_x86
之前?
Makefile文件是:https://github.com/loverszhaokai/AFL/blob/gcc_mode/Makefile
下生成文件:關鍵字'|'在Makefile的先決條件
afl-fuzz: afl-fuzz.c | test_x86
gcc afl-fuzz.c -o afl-fuzz
什麼意思 '|' test_x86
之前?
Makefile文件是:https://github.com/loverszhaokai/AFL/blob/gcc_mode/Makefile
targets : normal-prerequisites | order-only-prerequisites
如果order-only-prerequisites
改變的目標將不會被更新。
參考:https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html
[這裏的手動](https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html) – Evert
謝謝,明白這一點。 – loverszhaokai
您可能需要發佈*答案*,而不是用答案更新您的問題。現在你有一個問題和答案在一個... – Evert