Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix make cleanall && make #18417

Merged
merged 1 commit into from
Sep 9, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix make cleanall && make
since cleanall was deleting shlibdir but not manifest,
was unable to link suitesparse_wrapper against cholmod etc
  • Loading branch information
tkelman committed Sep 9, 2016
commit 576a4a3d9f115c9c739d9001b34b562510b10b31
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -549,16 +549,12 @@ clean: | $(CLEAN_TARGETS)

cleanall: clean
@-$(MAKE) -C $(BUILDROOT)/src clean-flisp clean-support
-rm -fr $(build_shlibdir)
ifeq ($(OS),WINNT)
-rm -rf $(build_prefix)/lib
endif
@-$(MAKE) -C $(BUILDROOT)/deps clean-libuv
-rm -fr $(build_prefix) $(build_staging)

distcleanall: cleanall
@-$(MAKE) -C $(BUILDROOT)/deps distcleanall
@-$(MAKE) -C $(BUILDROOT)/doc cleanall
-rm -fr $(build_prefix) $(build_staging)

.PHONY: default debug release check-whitespace release-candidate \
julia-debug julia-release julia-deps \
Expand Down