commit 04a71c96d278394c42b5bfcfdd33d97af962db34
parent 34a3d30a0d1612bf4bf3b161401d1e900744c8d2
Author: Morel BĂ©renger <berengermorel76@gmail.com>
Date: Fri, 14 Aug 2020 07:30:58 +0200
fix header dependency
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/conf.ninja b/conf.ninja
@@ -10,13 +10,13 @@ DST = ./$ROOT/$BUILD/$PROJECT/src
rule cc
description = compiling $in toward $out
- depfile = $DST/$out.d
+ depfile = $out.d
deps = gcc
command = $CC $CCFLAGS -MD -MF $out.d -c $in -o $out
rule cxx
description = compiling $in toward $out
- depfile = $DST/$out.d
+ depfile = $out.d
deps = gcc
command = $CXX $CXXFLAGS -MD -MF $out.d -c $in -o $out