We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7db77fe commit e39e53dCopy full SHA for e39e53d
Makefile
@@ -64,6 +64,15 @@ submodule-checkout: git-dep
64
@echo "Checking out submodules"
65
@${GIT} submodule update --init --recursive --remote
66
67
+# Submodule clean
68
+submodule-clean: git-dep
69
+ @echo "Cleaning submodules"
70
+ @${GIT} reset --hard
71
+ @${GIT} submodule sync --recursive
72
+ @${GIT} submodule update --init --force --recursive
73
+ @${GIT} clean -ffdx
74
+ @${GIT} submodule foreach --recursive git clean -ffdx
75
+
76
# Make build directory
77
mkdir:
78
@echo Mkdir ${BUILD_DIR}
0 commit comments