Skip to content
Snippets Groups Projects
Commit 2c74c1f8 authored by Albert Gräf's avatar Albert Gräf
Browse files

Fix up realclean target so that it also removes files in .gitignore.

parent 5097a10c
No related branches found
No related tags found
No related merge requests found
...@@ -68,14 +68,11 @@ clean: ...@@ -68,14 +68,11 @@ clean:
cd Gem/ && rm -f gemglutwindow.pd_linux Gem.pd_linux cd Gem/ && rm -f gemglutwindow.pd_linux Gem.pd_linux
realclean: realclean:
# git clean doesn't see these, but we need to get rid of them to prevent # This requires a working copy of the git repo.
# subsequent mysterious build failures
rm -rf pd/lib $(addprefix externals/disis/, flext/configure stk/configure)
# The rest requires a working copy of the git repo.
@test -d .git || (echo "Not a git repository, bailing out." && false) @test -d .git || (echo "Not a git repository, bailing out." && false)
git submodule deinit --all -f git submodule deinit --all -f
git checkout . git checkout .
git clean -dff git clean -dffx
# Build a self-contained distribution tarball (snapshot). This is pretty much # Build a self-contained distribution tarball (snapshot). This is pretty much
# the same as in debuild/Makefile and must be run in a working copy of the git # the same as in debuild/Makefile and must be run in a working copy of the git
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment