Skip to content

Commit

Permalink
Merge pull request #363 from LeaYeh/build-make-help-hint
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaYeh authored Jul 24, 2024
2 parents c1c3757 + d3b6fa4 commit 798e85f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,11 @@ PHONY_TARGETS += $(HELP_TARGETS)
all :
if $(MAKE) --question build; then \
echo $(MSG_NO_CHNG); \
echo $(MSG_HELP); \
else \
echo -n $(MSG_INFO)$(MSG_START); \
echo " "$(MSG_INFO); \
echo " "$(MSG_HELP); \
echo -n $(MSG_START); \
if $(MAKE) build; then \
echo; \
echo $(MSG_SUCCESS); \
Expand Down Expand Up @@ -371,8 +374,10 @@ STY_WHI_BRI_BG := "\e[107m"
# **************************** CUSTOM MESSAGES ******************************* #

################################################################################
MSG_INFO := $(STY_ITA)$(STY_WHI)" Make version: $(MAKE_VERSION)\n\
Compiler version: $(CC_VERSION)\n"$(STY_RES)
MSG_INFO := $(STY_ITA)$(STY_WHI)"Make version: $(MAKE_VERSION)\n\
Compiler version: $(CC_VERSION)"$(STY_RES)
################################################################################
MSG_HELP := $(STY_ITA)$(STY_WHI)"Run 'make help' to see all available Makefile targets."$(STY_RES)
################################################################################
MSG_START := $(STY_ITA)"Building Crash ... "$(STY_RES)
################################################################################
Expand Down

0 comments on commit 798e85f

Please sign in to comment.