Skip to content

Commit

Permalink
Fix make clean on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Oct 7, 2011
1 parent 79e9f7a commit ae7bdc2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mk/clean.mk
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ clean-misc:
define CLEAN_STAGE_N

clean$(1):
$(Q)rm -f $$(HOST_BIN$(1))/rustc
$(Q)rm -f $$(HOST_BIN$(1))/fuzzer
$(Q)rm -f $$(HOST_BIN$(1))/rustc$(X)
$(Q)rm -f $$(HOST_BIN$(1))/fuzzer$(X)
$(Q)rm -f $$(HOST_LIB$(1))/$(CFG_RUNTIME)
$(Q)rm -f $$(HOST_LIB$(1))/$(CFG_STDLIB)
$(Q)rm -f $$(HOST_LIB$(1))/$(CFG_RUSTLLVM)
$(Q)rm -f $$(HOST_LIB$(1))/libstd.rlib

clean$(1)$(2):
$(Q)rm -f $$(TARGET_BIN$(1)$(2))/rustc
$(Q)rm -f $$(TARGET_BIN$(1)$(2))/fuzzer
$(Q)rm -f $$(TARGET_BIN$(1)$(2))/rustc$(X)
$(Q)rm -f $$(TARGET_BIN$(1)$(2))/fuzzer$(X)
$(Q)rm -f $$(TARGET_LIB$(1)$(2))/$(CFG_RUNTIME)
$(Q)rm -f $$(TARGET_LIB$(1)$(2))/$(CFG_STDLIB)
$(Q)rm -f $$(TARGET_LIB$(1)$(2))/$(CFG_RUSTLLVM)
Expand Down

0 comments on commit ae7bdc2

Please sign in to comment.