Use rm -rf to remove build dir, so it doesn't error out if dir doesn't exist.

genexit-inst
Paul Sokolovsky 2013-12-30 21:02:10 +02:00
parent 8cc96a35e5
commit e1151e463d
3 changed files with 3 additions and 3 deletions

View File

@ -193,6 +193,6 @@ $(BUILD)/compile.o: $(PYSRC)/grammar.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h
clean:
/bin/rm -r $(BUILD)
/bin/rm -rf $(BUILD)
.PHONY: all clean

View File

@ -86,6 +86,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h
clean:
/bin/rm -r $(BUILD)
/bin/rm -rf $(BUILD)
.PHONY: clean

View File

@ -95,6 +95,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h
clean:
/bin/rm -r $(BUILD)
/bin/rm -rf $(BUILD)
.PHONY: clean