diff options
author | tmk <nobody@nowhere> | 2010-10-26 21:32:45 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-10-26 21:32:45 +0900 |
commit | 461e0d3d8c82cc78d29d3115af3c417bb51bb50f (patch) | |
tree | 844b28eed904f72aa18873f25de435379fa1bad3 /Makefile.common | |
parent | 7a336b05ec2d1056fe2206ae218199c66e8980da (diff) |
ADD: keymap macro for human to read easier
ADD: controller.h for controller board definition(teensy)
ADD: debug toggle
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.common b/Makefile.common index 879e52381c..df367128b8 100644 --- a/Makefile.common +++ b/Makefile.common @@ -116,15 +116,15 @@ CSTANDARD = -std=gnu99 # Place -D or -U options here for C sources -CDEFS = -DF_CPU=$(F_CPU)UL +CDEFS = -DF_CPU=$(F_CPU)UL -DDESCRIPTION=$(DESCRIPTION) # Place -D or -U options here for ASM sources -ADEFS = -DF_CPU=$(F_CPU) +ADEFS = -DF_CPU=$(F_CPU) -DDESCRIPTION=$(DESCRIPTION) # Place -D or -U options here for C++ sources -CPPDEFS = -DF_CPU=$(F_CPU)UL +CPPDEFS = -DF_CPU=$(F_CPU)UL -DDESCRIPTION=$(DESCRIPTION) #CPPDEFS += -D__STDC_LIMIT_MACROS #CPPDEFS += -D__STDC_CONSTANT_MACROS |