Explorar o código

Added gitclean + gitcleanforce to Makefile

Ask Solem %!s(int64=15) %!d(string=hai) anos
pai
achega
7c933288ac
Modificáronse 1 ficheiros con 7 adicións e 1 borrados
  1. 7 1
      Makefile

+ 7 - 1
Makefile

@@ -43,10 +43,16 @@ quicktest:
 testverbose:
 	(cd testproj; python manage.py test --verbosity=2)
 
-releaseok: pep8 autodoc test
+releaseok: pep8 autodoc test gitclean
 
 removepyc:
 	find . -name "*.pyc" | xargs rm
 
 release: releaseok ghdocs removepyc
 
+gitclean:
+	git clean -xdn
+
+gitcleanforce:
+	git clean -xdf
+