Skip to content

Commit

Permalink
feat: (ToolChain) console output
Browse files Browse the repository at this point in the history
  • Loading branch information
but0n committed Jul 7, 2017
1 parent 4601803 commit 58a7505
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ TypeOfMCU=STM32F10X_HD
#============================================================================#

TC=arm-none-eabi
CC=$(TC)-gcc
LD=$(TC)-ld -v
CC=echo "CC $@";$(TC)-gcc
LD=echo "LD $@";$(TC)-ld -v
OBJCOPY=$(TC)-objcopy
OBJDUMP=$(TC)-objdump
AR=$(TC)-ar
AR=echo "AR $@";$(TC)-ar
GDB=$(TC)-gdb
INCLUDE=-I$(TOP)/inc
INCLUDE+=-I$(STMLIB)/CMSIS/Include
Expand Down

0 comments on commit 58a7505

Please sign in to comment.