diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 13:14:31 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-02 13:14:31 +0000 |
| commit | bb496db6ef0f4623f8f9910d721205ffebf32fab (patch) | |
| tree | bf1db5f751dfaa2ffbb11e00bc36e8442551b1ef /LUFA/Build/lufa.build.in | |
| parent | 79a912a20a45957fb3828348faaa82b30a03d05a (diff) | |
Remove any variables in the optional build variable list that are marked as mandatory by one or more included build system modules in the CORE build system module. Alter DOXYGEN build system module to by default override the Doxygen configuration file stylesheet and replace it with the LUFA Doxygen stylesheet.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2280 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Build/lufa.build.in')
| -rw-r--r-- | LUFA/Build/lufa.build.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/LUFA/Build/lufa.build.in b/LUFA/Build/lufa.build.in index e76f5c3f..d1b82d82 100644 --- a/LUFA/Build/lufa.build.in +++ b/LUFA/Build/lufa.build.in @@ -92,16 +92,16 @@ OBJECT_FILES = $(filter %.o, $(C_SOURCE:%.c=%.o) $(CPP_SOURCE:%.cpp=%.o) $(ASM_S # Create a list of flags to pass to the compiler
ifeq ($(ARCH), AVR8)
- CC_FLAGS += -mmcu=$(MCU) -gdwarf-2 -fshort-enums -fno-inline-small-functions -fpack-struct
- CROSS = avr-
+ CC_FLAGS += -mmcu=$(MCU) -gdwarf-2 -fshort-enums -fno-inline-small-functions -fpack-struct
+ CROSS = avr-
else ifeq ($(ARCH), XMEGA)
- CC_FLAGS += -mmcu=$(MCU) -gdwarf-2 -fshort-enums -fno-inline-small-functions -fpack-struct
- CROSS = avr-
+ CC_FLAGS += -mmcu=$(MCU) -gdwarf-2 -fshort-enums -fno-inline-small-functions -fpack-struct
+ CROSS = avr-
else ifeq ($(ARCH), UC3)
- CC_FLAGS += -mpart=$(MCU) -g3 -masm-addr-pseudos
- CROSS = avr32-
+ CC_FLAGS += -mpart=$(MCU) -g3 -masm-addr-pseudos
+ CROSS = avr32-
else
- $(error Unsupported architecture.)
+ $(error Unsupported architecture.)
endif
CC_FLAGS += -Wall -fno-strict-aliasing -funsigned-char -funsigned-bitfields -ffunction-sections
CC_FLAGS += -I. -I$(patsubst %/,%,$(LUFA_PATH))/..
|
