From f1bb5714ee3dc9f690abb6c59f55f60fd8542aa9 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Wed, 3 Apr 2019 00:11:15 +0800 Subject: [PATCH] Hack AsmDeps... for StandardEqu.d --- AsmDepsToMakefile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AsmDepsToMakefile.py b/AsmDepsToMakefile.py index 8d6cde3..bc25aff 100755 --- a/AsmDepsToMakefile.py +++ b/AsmDepsToMakefile.py @@ -49,6 +49,9 @@ incfiles.append(path.basename(args.source)) for i in range(len(incfiles)): orig = incfiles[i] + if orig == 'StandardEqu.d': + incfiles[i] = '{ObjDir}' + orig + continue doneflag = False for k, v in args.defines: if path.exists(path.join(v, orig)):