# -Wl,...: tell GCC to pass this to linker.\r
# -Map: create map file\r
# --cref: add cross reference to map file\r
-LDFLAGS = -Wl,-Map=$(TARGET).map,--cref\r
+#LDFLAGS = -Wl,-Map=$(TARGET).map,--cref\r
LDFLAGS += -Wl,--relax\r
LDFLAGS += -Wl,--gc-sections\r
LDFLAGS += $(EXTMEMOPTS)\r
\r
\r
# Compiler flags to generate dependency files.\r
-GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d\r
+#GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d\r
\r
\r
# Combine all necessary flags and optional flags.\r
\r
doxygen:\r
@echo Generating Project Documentation \($(TARGET)\)...\r
- @if ( doxygen Doxygen.conf 2>&1 | grep -v "warning: ignoring unsupported tag" ;); then \\r
+ @if ( ( cat Doxygen.conf ; echo "HTML_STYLESHEET=$(LUFA_PATH)/LUFA/DoxygenPages/Style/Style.css" ) | doxygen - 2>&1 | grep -v "warning: ignoring unsupported tag" ;); then \\r
exit 1; \\r
fi;\r
@echo Documentation Generation Complete.\r