ITADN

the document about gnu makefiles has a tiny (but significant) mistake

#86Closedzlago 创建于 2024-04-28
Z
zlagocommented
the document claims GNU `make` looks for `GNUMakefile` (uppercase `M`), its actually `GNUmakefile` (lowercase `m`) ``` $ touch GNUMakefile $ make make: *** No targets specified and no makefile found. Stop. $ touch GNUmakefile $ make make: *** No targets. Stop. ```
关闭于 2024-05-17 3 条评论