Skip to content
Snippets Groups Projects
Commit 581f984c authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Makefile.cmt: fix for progress reporting on Windows

parent a1de2653
No related branches found
No related tags found
No related merge requests found
......@@ -210,8 +210,11 @@ purge: clean $(foreach dep,$(wildcard $(dependency_dir)/*.pack.d),$(dep)_do_purg
#purge: clean
# $(RM) $(dependency_dir)/*.pack.d $(packages:=/cmt/$(Makefile))
build_flags = $(wildcard $(dependency_dir)/*.pack.build)
remove_build_flags:
@$(RM) -r $(dependency_dir)/*.pack.build
ifneq ($(build_flags),)
@$(RM) -r $(build_flags)
endif
# --- Add rules to build packages (e.g. "make MyHat/MyPackage")
$(foreach pack,$(packages),$(eval $(pack): $(pack)_build))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment