Skip to content

Commit

Permalink
make clean external stdlib clones (#41861)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth authored Aug 11, 2021
1 parent c12e63f commit 59fe04f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion stdlib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ getall get: $(addprefix get-, $(STDLIBS_EXT) $(JLL_NAMES))
install: version-check $(addprefix install-, $(STDLIBS_EXT) $(JLL_NAMES)) $(STDLIBS_LINK_TARGETS)
version-check: $(addprefix version-check-, $(STDLIBS_EXT))
uninstall: $(addprefix uninstall-, $(STDLIBS_EXT))
clean: $(addprefix clean-, $(STDLIBS_EXT)) $(CLEAN_TARGETS)
extstdlibclean:
for module in $(STDLIBS_EXT) ; do \
rm -rf $(JULIAHOME)/stdlib/$${module}-*; \
done
clean: $(addprefix clean-, $(STDLIBS_EXT)) $(CLEAN_TARGETS) extstdlibclean
distclean: $(addprefix distclean-, $(STDLIBS_EXT)) clean
checksumall: $(addprefix checksum-, $(STDLIBS_EXT))

Expand Down

0 comments on commit 59fe04f

Please sign in to comment.