Skip to content

Commit

Permalink
src/Makefile: add V=1 parsing to enable verbose compile in easier cla…
Browse files Browse the repository at this point in the history
…ssic way (#158)
  • Loading branch information
ia committed Jan 13, 2024
1 parent d89c61d commit ac84c63
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ ifeq ($(USE_THUMB),)
endif

# Enable this if you want to see the full log while compiling.
ifeq ($(V),1)
USE_VERBOSE_COMPILE = yes
endif

# Also set directives to use with commands depending on verbosity status.
ifeq ($(USE_VERBOSE_COMPILE),yes)
# if verbose build then print out the full commands without description
Expand Down

0 comments on commit ac84c63

Please sign in to comment.