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:
Andrei Horodniceanu 2024-05-02 20:41:53 +03:00
parent fa463b472c
commit 1c582392a7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ test: debug
cd tests && ./test.d
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)
$(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@