Add rm -f *.d to Makefile clean targets

This commit is contained in:
twinaphex 2014-11-18 16:01:36 +01:00
parent 2d16ca2de7
commit 56939cdab6
3 changed files with 3 additions and 0 deletions

View File

@ -164,5 +164,6 @@ clean:
rm -rf $(OBJDIR) rm -rf $(OBJDIR)
rm -f $(TARGET) rm -f $(TARGET)
rm -f $(JTARGET) rm -f $(JTARGET)
rm -f *.d
.PHONY: all install uninstall clean .PHONY: all install uninstall clean

View File

@ -85,6 +85,7 @@ clean:
rm -f input/*.o rm -f input/*.o
rm -f tools/*.o rm -f tools/*.o
rm -f $(TARGET) rm -f $(TARGET)
rm -f *.d
.PHONY: all clean .PHONY: all clean

View File

@ -179,6 +179,7 @@ endif
clean: clean:
rm -rf $(OBJDIR) rm -rf $(OBJDIR)
rm -f $(TARGET) rm -f $(TARGET)
rm -f *.d
rm -f tools/retroarch-joyconfig.exe rm -f tools/retroarch-joyconfig.exe
dist_x86: all dist_x86: all