vscode-project-templates
vscode-project-templates copied to clipboard
make rebuild removes *.d and make clean creates *.d before removeing them
The make all
works just fine
The make rebuild
it will remove *.d
files as it goes through the clean
process but does not recreate them.
The make clean
creates *.d
and then removes them which is redundant.
I think the issue is that somehow creating*.d
is expected in clean but not the rebuild.
I am no expert in Makefiles can someone help me please?
I am using windows 10 and g++ 9.2.0
I made a workaround and requested a pull for that