NMAKE 子目录中文件的通配符

Wildcard for files in sub-directory in NMAKE

如何使像 boot/*.inc 这样的通配符依赖项在 NMAKE 中工作?

这对我有用,使用 VS 2017:

>type makefile
mytarget : boot\*.inc
        !@echo $?

>dir/b boot
one.inc
two.inc

>nmake
boot\one.inc
boot\two.inc

Microsoft 提供的 on-line NMAKE 文档简直糟透了。

相比之下,标题为第 16 章:使用 NMAKE 管理项目 的 59 页旧 PDF 文档要好得多。它似乎与当前的在线版本一致(最好有勘误表!)。但是通过 Google 很难找到;两个链接是 http://www.engr.iupui.edu/~dskim/downloadable/reference_Nmake.pdf and https://www.scribd.com/document/19344397/Managing-Projects-With-NMAKE.