23 lines
789 B
Plaintext
23 lines
789 B
Plaintext
|
# git_clean_all
|
||
|
#
|
||
|
# Copyright 2018 Kavalogic, Inc.
|
||
|
#
|
||
|
# This file is part of Inspekt3d.
|
||
|
#
|
||
|
# Inspekt3d is free software; you can redistribute it and/or modify it
|
||
|
# under the terms of the GNU Lesser General Public License
|
||
|
# version 2.1 as published by the Free Software Foundation.
|
||
|
#
|
||
|
# Inspekt3d is distributed in the hope that it will be useful, but
|
||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
# Lesser General Public License for more details. You should have
|
||
|
# received a copy of the GNU Lesser General Public License along with
|
||
|
# Inspekt3d. If not, see <http://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
# git_clean_all - clean the source
|
||
|
|
||
|
git clean . -f
|
||
|
rm -rf autom4te.cache/ `find . -name .libs` `find . -name .deps`
|
||
|
|