[Nasm-commits] [nasm:nasm-2.15.xx] Makefile.in: Makefile.dep is not optional for external dependencies

nasm-bot for H. Peter Anvin (Intel) hpa at zytor.com
Thu Jun 4 19:57:11 PDT 2020


Commit-ID:  9e5e5ec5b6a07328b4ca6260d0d3266fef4fc8c0
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=9e5e5ec5b6a07328b4ca6260d0d3266fef4fc8c0
Author:     H. Peter Anvin (Intel) <hpa at zytor.com>
AuthorDate: Thu, 4 Jun 2020 18:44:23 -0700
Committer:  H. Peter Anvin (Intel) <hpa at zytor.com>
CommitDate: Thu, 4 Jun 2020 18:44:23 -0700

Makefile.in: Makefile.dep is not optional for external dependencies

If we have external dependencies, we need Makefile.dep to exist;
this forces make to invoke the Makefile.dep target if this file is
missing.

Signed-off-by: H. Peter Anvin (Intel) <hpa at zytor.com>


---
 Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 2fa561b6..98ac0824 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -564,7 +564,7 @@ cleandeps: $(PERLREQ) tools/syncfiles.pl tools/mkdep.pl
 # @object-ending: ".$(O)"
 # @path-separator: "/"
 # @external: "Makefile.dep"
-# @include-command: "-include"
+# @include-command: "include"
 # @selfrule: "1"
 #-- Everything below is generated by mkdep.pl - do not edit --#
--include Makefile.dep
+include Makefile.dep


More information about the Nasm-commits mailing list