Commit 780e3fa2 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Merge pull request #932 from corona10/MAKEFILE

fix Makefile to be able to 'make' after 'make clean'
parents c5139df3 d9678aae
......@@ -741,7 +741,7 @@ check_format: $(CMAKE_SETUP_RELEASE)
.PHONY: clean
clean:
@ find src $(TOOLS_DIR) $(TEST_DIR) ./from_cpython ./lib_pyston \( -name '*.o' -o -name '*.d' -o -name '*.py_cache' -o -name '*.bc' -o -name '*.o.ll' -o -name '*.pub.ll' -o -name '*.cache' -o -name 'stdlib*.ll' -o -name '*.pyc' -o -name '*.so' -o -name '*.a' -o -name '*.expected_cache' -o -name '*.pch' \) -print -delete
@ find \( -name 'pyston*' -executable -type f \) -print -delete
@ find $(BUILD_DIR) \( -name 'pyston*' -executable -type f \) -print -delete
@ rm -vf pyston_dbg pyston_release pyston_gcc
@ find $(TOOLS_DIR) -maxdepth 0 -executable -type f -print -delete
@ rm -rf oprofile_data
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment