X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/5cba3ce3a489f1c6c38606bc6425f9c8a06fba8e..d4684b29b9a3a4b45b6422d0f1cf6c79639c84c8:/Projects/XPLAINBridge/makefile diff --git a/Projects/XPLAINBridge/makefile b/Projects/XPLAINBridge/makefile index 63c474eb7..5c962b574 100644 --- a/Projects/XPLAINBridge/makefile +++ b/Projects/XPLAINBridge/makefile @@ -126,15 +126,16 @@ AVRISP_PATH = ../AVRISP-MKII # LUFA library compile-time options and predefined tokens LUFA_OPTS = -D USE_LUFA_CONFIG_HEADER + # Create the LUFA source path variables by including the LUFA root makefile include $(LUFA_PATH)/LUFA/makefile # List C source files here. (C dependencies are automatically generated.) SRC = $(TARGET).c \ - AVRISPDescriptors.c \ - USARTDescriptors.c \ Lib/SoftUART.c \ + USARTDescriptors.c \ + $(AVRISP_PATH)/AVRISPDescriptors.c \ $(AVRISP_PATH)/Lib/V2Protocol.c \ $(AVRISP_PATH)/Lib/V2ProtocolParams.c \ $(AVRISP_PATH)/Lib/ISP/ISPProtocol.c \ @@ -705,7 +706,7 @@ clean_list : doxygen: @echo Generating Project Documentation \($(TARGET)\)... - @if ( doxygen Doxygen.conf 2>&1 | grep -v "warning: ignoring unsupported tag" ;); then \ + @if ( ( cat Doxygen.conf ; echo "HTML_STYLESHEET=$(LUFA_PATH)/LUFA/DoxygenPages/Style/Style.css" ) | doxygen - 2>&1 | grep -v "warning: ignoring unsupported tag" ;); then \ exit 1; \ fi; @echo Documentation Generation Complete.