Add msg as prerequisite for compiler to fix 'make distclean all' failure

This commit is contained in:
Pierre Muller 2024-08-29 22:41:40 +02:00
parent 7d1bb89455
commit 94d7aeb998
2 changed files with 2 additions and 2 deletions

View File

@ -5114,7 +5114,7 @@ $(SYMLINKINSTALL_TARGETS):
alltargets: $(ALLTARGETS)
.PHONY: all compiler echotime ppuclean execlean clean distclean
all: compiler $(addsuffix _all,$(TARGET_DIRS))
compiler: $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
compiler: msg $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
ifeq ($(MAKELEVEL),0)
ifndef STARTTIME
ifdef DATE

View File

@ -726,7 +726,7 @@ alltargets: $(ALLTARGETS)
all: compiler $(addsuffix _all,$(TARGET_DIRS))
compiler: $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
compiler: msg $(COMPILER_UNITTARGETDIR) $(COMPILER_TARGETDIR) $(EXENAME)
ifeq ($(MAKELEVEL),0)
ifndef STARTTIME