Use rm -rf to remove build dir, so it doesn't error out if dir doesn't exist.
This commit is contained in:
parent
8cc96a35e5
commit
e1151e463d
|
@ -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
|
||||||
$(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
|
||||||
$(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
|
||||||
|
|
Loading…
Reference in New Issue