diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-05-12 22:38:08 +0200 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-05-12 22:38:08 +0200 |
commit | 4bfd45b48460433ab619f9f0d27af52ddfd93881 (patch) | |
tree | 1b6209545e557b96980021ecb338d6c4ddf6406b | |
parent | 61d1be0cb29c020ebeff29d61d543e1831710b9f (diff) | |
download | lufa-4bfd45b48460433ab619f9f0d27af52ddfd93881.tar.gz lufa-4bfd45b48460433ab619f9f0d27af52ddfd93881.tar.bz2 lufa-4bfd45b48460433ab619f9f0d27af52ddfd93881.zip |
Update Studio Integration blob and scripts to add a menu item for the local help.
-rw-r--r-- | LUFA/StudioIntegration/Blob/Atmel.Studio.Services.Interfaces.dll | bin | 93696 -> 0 bytes | |||
-rw-r--r-- | LUFA/StudioIntegration/Blob/LUFA.dll | bin | 382464 -> 383488 bytes | |||
-rw-r--r-- | LUFA/StudioIntegration/makefile | 34 |
3 files changed, 18 insertions, 16 deletions
diff --git a/LUFA/StudioIntegration/Blob/Atmel.Studio.Services.Interfaces.dll b/LUFA/StudioIntegration/Blob/Atmel.Studio.Services.Interfaces.dll Binary files differdeleted file mode 100644 index 67f975e10..000000000 --- a/LUFA/StudioIntegration/Blob/Atmel.Studio.Services.Interfaces.dll +++ /dev/null diff --git a/LUFA/StudioIntegration/Blob/LUFA.dll b/LUFA/StudioIntegration/Blob/LUFA.dll Binary files differindex 1d7284f3d..0a10ee8c4 100644 --- a/LUFA/StudioIntegration/Blob/LUFA.dll +++ b/LUFA/StudioIntegration/Blob/LUFA.dll diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index c05a89d3d..0790d834a 100644 --- a/LUFA/StudioIntegration/makefile +++ b/LUFA/StudioIntegration/makefile @@ -29,23 +29,25 @@ EXTENSION_OUTPUT_XML := $(LUFA_ROOT)/../extension.xml MODULE_OUTPUT_XML := $(LUFA_ROOT)/asf.xml MSHELP_OUTPUT_XML := $(LUFA_ROOT)/../lufa_help_$(EXT_VERSION_NUM).mshc XML_FILES := $(filter-out $(TEMP_MANIFEST_FILE), $(shell ls *.xml)) -VSIX_ASSETS := $(LUFA_ROOT)/DoxygenPages/Images/LUFA_thumb.png \ - $(LUFA_ROOT)/DoxygenPages/Images/LUFA.png \ - $(LUFA_ROOT)/License.txt \ - VSIX/"[Content_Types].xml" \ - VSIX/ASFExplorer.png \ - VSIX/ASFWizard.png \ - VSIX/LUFAHelpMenu.png \ - VSIX/NewExampleWizard.png \ - VSIX/GettingStarted.htm \ - Blob/Atmel.Studio.Services.Interfaces.dll \ - Blob/LUFA.dll \ +VSIX_ASSETS := $(LUFA_ROOT)/DoxygenPages/Images/LUFA_thumb.png \ + $(LUFA_ROOT)/DoxygenPages/Images/LUFA.png \ + $(LUFA_ROOT)/License.txt \ + VSIX/"[Content_Types].xml" \ + VSIX/ASFExplorer.png \ + VSIX/ASFWizard.png \ + VSIX/LUFAHelpMenu.png \ + VSIX/NewExampleWizard.png \ + VSIX/GettingStarted.htm \ + Blob/LUFA.dll \ Blob/LUFA.pkgdef -MSHELP_GEN_PARAMS := --stringparam generate.toc "book toc" \ - --stringparam chunk.quietly "1" \ - --stringparam chunk.section.depth "3" \ - --stringparam chunk.first.sections "1" \ - --stringparam chapter.autolabel "0" \ +MSHELP_GEN_PARAMS := --stringparam generate.toc "book toc" \ + --stringparam chunk.quietly "1" \ + --stringparam chunk.section.depth "3" \ + --stringparam chunk.first.sections "1" \ + --stringparam chapter.autolabel "0" \ + --stringparam product.name "LUFA" \ + --stringparam product.version "$(LUFA_VERSION_NUM)" \ + --stringparam root.filename "LUFA" \ --stringparam html.stylesheet "lufa_studio_help_styling.css" all: generate_xml check_filenames generate_vsix |