Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
build/make/Makefile.in (sagelib-clean): Clean the new build location
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Aug 8, 2020
1 parent 01b96b0 commit 8a19fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/make/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,10 @@ clean:
@echo "Deleting package build directories..."
rm -rf "$(SAGE_LOCAL)/var/tmp/sage/build"

# c_lib .cython_version are from old sage versions
# "c_lib", ".cython_version", "build" in $(SAGE_SRC) are from old sage versions
sagelib-clean:
@echo "Deleting Sage library build artifacts..."
cd "$(SAGE_SRC)" && (rm -rf c_lib .cython_version; rm -rf build; find . -name '*.pyc' | xargs rm -f; rm -rf sage/ext/interpreters)
(cd "$(SAGE_SRC)" && rm -rf c_lib .cython_version; rm -rf build; find . -name '*.pyc' | xargs rm -f; rm -rf sage/ext/interpreters) && (cd "$(SAGE_ROOT)/build/pkgs/sagelib/src/" && rm -rf build)

build-clean: clean doc-clean sagelib-clean

Expand Down

0 comments on commit 8a19fe2

Please sign in to comment.