From 9cf0a44d12d3c1b6a1b2bd4028250026f617a5b7 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Sun, 13 Nov 2016 22:41:42 +0000 Subject: [PATCH] wmake: Suppress the "is up to date" messages Avoids a lot of unnecessary clutter in the compilation log. --- wmake/makefiles/general | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/wmake/makefiles/general b/wmake/makefiles/general index 17b9700b7..c4085123a 100644 --- a/wmake/makefiles/general +++ b/wmake/makefiles/general @@ -128,6 +128,14 @@ LIB_HEADER_DIRS = \ # Define link statements for executables #------------------------------------------------------------------------------ +.PHONY: all +all: $(EXE) + @: + +.PHONY: silent +silent: + @: + $(EXE): $(OBJECTS) @$(WM_SCRIPTS)/makeTargetDir $(EXE) $(call QUIET_MESSAGE,ld,$(EXE)) @@ -135,10 +143,6 @@ $(EXE): $(OBJECTS) $(EXE_LIBS) $(PROJECT_LIBS) $(SYS_LIBS) \ $(LINK_LIBS) $(GLIBS) -o $(EXE) -.PHONY: silent -silent: - @: - .PHONY: exe exe: $(SEXE) | silent