Add $OBJDIR to the list of configuration that gets printed

Fix #77
This commit is contained in:
Sudar 2013-06-20 21:32:35 +05:30
parent 3b35453564
commit 6cdad1d621
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,9 @@ A Makefile for Arduino Sketches
The following is the rough list of changes that went into different versions. I tried to give credit whenever possible. If I have missed anyone, kindly add it to the list.
### 0.12.1 (in development)
- Add $OBJDIR to the list of configuration that gets printed. Fix issue #77
### 0.12.0 (2013-06-20)
- Fix "generated_assembly" target, which got broken earlier. Fix issue #76 (https://github.com/matthijskooijman)
- Deprecate "generated_assembly" target in favour of "generate_assembly". Fix issue #79

View file

@ -503,6 +503,9 @@ endif
# Everything gets built in here (include BOARD_TAG now)
ifndef OBJDIR
OBJDIR = build-$(BOARD_TAG)
$(call show_config_variable,OBJDIR,[COMPUTED],(from BOARD_TAG))
else
$(call show_config_variable,OBJDIR,[USER])
endif
########################################################################