makefile: fix bin/dfmt-test target
Don't call the D compiler with bin/githash.txt as a source file. Signed-off-by: Andrei Horodniceanu <a.horodniceanu@proton.me>
This commit is contained in:
parent
fa463b472c
commit
1c582392a7
2
makefile
2
makefile
|
@ -40,7 +40,7 @@ test: debug
|
||||||
cd tests && ./test.d
|
cd tests && ./test.d
|
||||||
|
|
||||||
bin/dfmt-test: bin/githash.txt $(SRC)
|
bin/dfmt-test: bin/githash.txt $(SRC)
|
||||||
$(DC) $(DMD_TEST_FLAGS) $^ -of$@
|
$(DC) $(DMD_TEST_FLAGS) $(filter %.d,$^) -of$@
|
||||||
|
|
||||||
bin/dfmt: bin/githash.txt $(SRC)
|
bin/dfmt: bin/githash.txt $(SRC)
|
||||||
$(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@
|
$(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@
|
||||||
|
|
Loading…
Reference in New Issue