mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-10 02:44:18 +00:00
Tweak the VSIX output names to indicate if it is a release or testing version.
This commit is contained in:
parent
7c3867da33
commit
6ea66a7770
@ -15,7 +15,7 @@
|
|||||||
<description>Lightweight USB Framework for AVRs (LUFA), a USB software stack/framework.</description>
|
<description>Lightweight USB Framework for AVRs (LUFA), a USB software stack/framework.</description>
|
||||||
<icon-image path="LUFA/DoxygenPages/Images/LUFA_thumb.png"/>
|
<icon-image path="LUFA/DoxygenPages/Images/LUFA_thumb.png"/>
|
||||||
<preview-image path="LUFA/DoxygenPages/Images/LUFA.png"/>
|
<preview-image path="LUFA/DoxygenPages/Images/LUFA.png"/>
|
||||||
<license caption="LUFA license" path="LUFA/License.txt"/>
|
<license caption="LUFA License" path="LUFA/License.txt"/>
|
||||||
<release-notes caption="LUFA Information" url="http://www.lufa-lib.org"/>
|
<release-notes caption="LUFA Information" url="http://www.lufa-lib.org"/>
|
||||||
<online-help>
|
<online-help>
|
||||||
<index-page caption="LUFA Documentation" url="http://www.lufa-lib.org/documentation/"/>
|
<index-page caption="LUFA Documentation" url="http://www.lufa-lib.org/documentation/"/>
|
||||||
|
@ -16,10 +16,13 @@ EXTENSION_OUTPUT_XML := $(LUFA_ROOT)/../extension.xml
|
|||||||
MODULE_OUTPUT_XML := $(LUFA_ROOT)/asf.xml
|
MODULE_OUTPUT_XML := $(LUFA_ROOT)/asf.xml
|
||||||
XML_FILES := $(filter-out $(TEMP_MANIFEST_FILE), $(shell ls *.xml))
|
XML_FILES := $(filter-out $(TEMP_MANIFEST_FILE), $(shell ls *.xml))
|
||||||
LUFA_VERSION_NUM := $(shell grep LUFA_VERSION_STRING $(LUFA_ROOT)/Version.h | cut -d'"' -f2)
|
LUFA_VERSION_NUM := $(shell grep LUFA_VERSION_STRING $(LUFA_ROOT)/Version.h | cut -d'"' -f2)
|
||||||
EXT_VERSION_NUM := $(shell date +"%y.%m.%d").$(LUFA_VERSION_NUM)
|
|
||||||
|
|
||||||
ifeq ($(LUFA_VERSION_NUM),000000)
|
ifneq ($(LUFA_VERSION_NUM),000000)
|
||||||
|
EXT_VERSION_NUM := $(shell date +"%y.%m.%d").$(LUFA_VERSION_NUM)
|
||||||
|
EXT_VSIX_NAME := LUFA-RELEASE-$(LUFA_VERSION_NUM).vsix
|
||||||
|
else
|
||||||
EXT_VERSION_NUM := 0.$(shell date +"%y%m%d.%H%M%S")
|
EXT_VERSION_NUM := 0.$(shell date +"%y%m%d.%H%M%S")
|
||||||
|
EXT_VSIX_NAME := LUFA-TESTING-$(shell date +"%y.%m.%d.%H.%M.%S").vsix
|
||||||
|
|
||||||
$(warning No LUFA version set - assuming a test version should be created.)
|
$(warning No LUFA version set - assuming a test version should be created.)
|
||||||
endif
|
endif
|
||||||
@ -72,7 +75,7 @@ generate_vsix: $(EXTENSION_OUTPUT_XML) $(MODULE_OUTPUT_XML)
|
|||||||
@xsltproc --stringparam lufa-version "$(LUFA_VERSION_NUM)" XSLT/lufa_asfmanifest_transform.xslt VSIX/asf-manifest.xml > $(LUFA_ROOT)/../asf-manifest.xml
|
@xsltproc --stringparam lufa-version "$(LUFA_VERSION_NUM)" XSLT/lufa_asfmanifest_transform.xslt VSIX/asf-manifest.xml > $(LUFA_ROOT)/../asf-manifest.xml
|
||||||
|
|
||||||
@echo "Generating Atmel Studio VSIX Extension file..."
|
@echo "Generating Atmel Studio VSIX Extension file..."
|
||||||
@cd $(LUFA_ROOT)/../ && zip LUFA-$(LUFA_VERSION_NUM).vsix -q -9 contents.zip exampleProjects.xml content.xml.cache License.txt Preview.png PreviewThumb.png "[Content_Types].xml" extension.vsixmanifest asf-manifest.xml extension.xml
|
@cd $(LUFA_ROOT)/../ && zip $(EXT_VSIX_NAME) -q -9 contents.zip exampleProjects.xml content.xml.cache License.txt Preview.png PreviewThumb.png "[Content_Types].xml" extension.vsixmanifest asf-manifest.xml extension.xml
|
||||||
@echo "Atmel Studio VSIX Extension file generated."
|
@echo "Atmel Studio VSIX Extension file generated."
|
||||||
|
|
||||||
check_filenames: $(MODULE_OUTPUT_XML)
|
check_filenames: $(MODULE_OUTPUT_XML)
|
||||||
|
Loading…
Reference in New Issue
Block a user