Skip to content

Commit

Permalink
Merge pull request JuliaLang#6332 from JuliaLang/anj/make
Browse files Browse the repository at this point in the history
Change distclean target to distcleanall
  • Loading branch information
andreasnoack committed Apr 3, 2014
2 parents 5bb21d0 + aab760d commit ba8b302
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -321,13 +321,13 @@ ifeq ($(OS),WINNT)
endif
@$(MAKE) -C deps clean-uv

distclean: cleanall
@$(MAKE) -C deps distclean
distcleanall: cleanall
@$(MAKE) -C deps distcleanall
@$(MAKE) -C doc cleanall
rm -fr $(build_prefix)

.PHONY: default debug release julia-debug julia-release \
test testall testall1 test-* clean distclean cleanall \
test testall testall1 test-* clean distcleanall cleanall \
run-julia run-julia-debug run-julia-release run \
install dist source-dist git-submodules

Expand Down
4 changes: 2 additions & 2 deletions deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ compile: $(addprefix compile-, $(LIBS))
check: $(addprefix check-, $(LIBS))
install: $(addprefix install-, $(LIBS))
cleanall: $(addprefix clean-, $(LIBS))
distclean: $(addprefix distclean-, $(LIBS))
distcleanall: $(addprefix distclean-, $(LIBS))
rm -rf $(build_prefix)
getall: get-llvm get-uv get-pcre get-double-conversion get-openlibm get-openspecfun get-random get-openblas get-lapack get-fftw get-suitesparse get-arpack get-unwind get-osxunwind get-gmp get-mpfr get-zlib get-patchelf get-utf8proc

Expand Down Expand Up @@ -1597,6 +1597,6 @@ install-git: $(GIT_TARGET)

## phony targets ##

.PHONY: default compile install cleanall distclean \
.PHONY: default compile install cleanall distcleanall \
get-* configure-* compile-* check-* install-* \
clean-* distclean-*

0 comments on commit ba8b302

Please sign in to comment.