Skip to content
Snippets Groups Projects
Commit e1151e46 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

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

parent 8cc96a35
No related branches found
No related tags found
No related merge requests found
...@@ -193,6 +193,6 @@ $(BUILD)/compile.o: $(PYSRC)/grammar.h ...@@ -193,6 +193,6 @@ $(BUILD)/compile.o: $(PYSRC)/grammar.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h $(BUILD)/emitbc.o: $(PYSRC)/emit.h
clean: clean:
/bin/rm -r $(BUILD) /bin/rm -rf $(BUILD)
.PHONY: all clean .PHONY: all clean
...@@ -86,6 +86,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h ...@@ -86,6 +86,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h $(BUILD)/emitbc.o: $(PYSRC)/emit.h
clean: clean:
/bin/rm -r $(BUILD) /bin/rm -rf $(BUILD)
.PHONY: clean .PHONY: clean
...@@ -95,6 +95,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h ...@@ -95,6 +95,6 @@ $(BUILD)/emitcpy.o: $(PYSRC)/emit.h
$(BUILD)/emitbc.o: $(PYSRC)/emit.h $(BUILD)/emitbc.o: $(PYSRC)/emit.h
clean: clean:
/bin/rm -r $(BUILD) /bin/rm -rf $(BUILD)
.PHONY: clean .PHONY: clean
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment