Skip to content

Commit 0b0b692

Browse files
committed
Merge pull request #1152 from jeffhostetler/jeffhostetler/msvc_make_clean
Makefile: clean EXE PDBs when MSVC=1
2 parents e0d082d + 17caa31 commit 0b0b692

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2631,6 +2631,9 @@ endif
26312631
$(RM) GIT-SCRIPT-DEFINES GIT-PERL-DEFINES GIT-PYTHON-VARS
26322632
ifdef MSVC
26332633
$(RM) $(patsubst %.o,%.o.pdb,$(OBJECTS))
2634+
$(RM) $(patsubst %.exe,%.pdb,$(OTHER_PROGRAMS))
2635+
$(RM) $(patsubst %.exe,%.pdb,$(PROGRAMS))
2636+
$(RM) $(patsubst %.exe,%.pdb,$(TEST_PROGRAMS))
26342637
endif
26352638

26362639
.PHONY: all install profile-clean clean strip

0 commit comments

Comments
 (0)