mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Makefile: Remove printing of compiler/assembler/linker options at build start. Use PRETTY_OUTPUT=0 if you need that information.
git-svn-id: https://svn.eduke32.com/eduke32@6148 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b3d597200b
commit
91c8ca11bd
2 changed files with 2 additions and 11 deletions
12
Common.mak
12
Common.mak
|
@ -938,16 +938,7 @@ endif
|
|||
|
||||
ifeq ($(PRETTY_OUTPUT),1)
|
||||
RECIPE_IF = if
|
||||
BUILD_SETTINGS_COMPILER = \033[1;36mcompiler: \033[0;36m\"$(COMPILER_C)\"
|
||||
BUILD_SETTINGS_ASSEMBLER = \033[1;36massembler: \033[0;36m\"$(AS) $(ASFLAGS)\"
|
||||
BUILD_SETTINGS_LINKER = \033[1;36mlinker: \033[0;36m\"$(LINKER) $(GUI_LIBS) $(LIBDIRS) $(LIBS)\"
|
||||
ifeq (0,$(NOASM))
|
||||
BUILD_SETTINGS = printf "$(BUILD_SETTINGS_COMPILER)\n$(BUILD_SETTINGS_ASSEMBLER)\n$(BUILD_SETTINGS_LINKER)\033[0m\n"
|
||||
else
|
||||
BUILD_SETTINGS = printf "$(BUILD_SETTINGS_COMPILER)\n$(BUILD_SETTINGS_LINKER)\033[0m\n"
|
||||
endif
|
||||
BUILD_STARTED = printf "\033[K\033[1;36mBuild started using:\033[0m\n"; $(BUILD_SETTINGS)
|
||||
BUILD_ECHOFLAGS = printf "\033[K\033[1;36mEnded compilation in this directory using:\n$(BUILD_SETTINGS_COMPILER)\033[0m\n"
|
||||
BUILD_STARTED = printf "\033[K\033[1;36mBuilding: \033[0;36m$(MAKE) $(MAKECMDGOALS) -$(MAKEFLAGS)\033[0m\n"
|
||||
COMPILE_STATUS = printf "\033[K\033[0mBuilding object \033[1m$@\033[0m...\033[0m\r"
|
||||
COMPILE_OK = printf "\033[K\033[0;32mBuilt object \033[1;32m$@\033[0;32m \033[0m\n"
|
||||
COMPILE_FAILED = printf "\033[K\033[0;31mFailed building \033[1;31m$@\033[0;31m from\033[0m \033[1;31m$<\033[0;31m!\033[0m\n"; exit 1
|
||||
|
@ -967,7 +958,6 @@ RECIPE_RESULT_LINK = ; then $(LINK_OK); else $(LINK_FAILED); fi
|
|||
else
|
||||
RECIPE_IF =
|
||||
BUILD_STARTED =
|
||||
BUILD_ECHOFLAGS =
|
||||
COMPILE_STATUS =
|
||||
COMPILE_OK = true
|
||||
COMPILE_FAILED = false; exit 1
|
||||
|
|
|
@ -773,6 +773,7 @@ ifeq ($(PRETTY_OUTPUT),1)
|
|||
endif
|
||||
.PHONY: \
|
||||
all \
|
||||
start \
|
||||
$(foreach j,$(foreach i,$(GAMES),$($i)) test utils tools,$j clean$j) \
|
||||
veryclean \
|
||||
clean \
|
||||
|
|
Loading…
Reference in a new issue