Skip to content

Commit a4ac813

Browse files
committed
Merge pull request #1152 from jeffhostetler/jeffhostetler/msvc_make_clean
Makefile: clean EXE PDBs when MSVC=1
2 parents f4dfd08 + 5ca2ed6 commit a4ac813

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
@@ -2609,6 +2609,9 @@ endif
26092609
$(RM) GIT-SCRIPT-DEFINES GIT-PERL-DEFINES GIT-PYTHON-VARS
26102610
ifdef MSVC
26112611
$(RM) $(patsubst %.o,%.o.pdb,$(OBJECTS))
2612+
$(RM) $(patsubst %.exe,%.pdb,$(OTHER_PROGRAMS))
2613+
$(RM) $(patsubst %.exe,%.pdb,$(PROGRAMS))
2614+
$(RM) $(patsubst %.exe,%.pdb,$(TEST_PROGRAMS))
26122615
endif
26132616

26142617
.PHONY: all install profile-clean clean strip

0 commit comments

Comments
 (0)