diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-01-06 19:47:30 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-01-06 19:47:30 +0000 |
commit | 09b2254b33221e8a07466e91622313e20a7d7345 (patch) | |
tree | c8076c5d5783b713a7a7a4be65aeca00da9bf207 | |
parent | fc876438f62c54596c2ea3bb015f8868a9c8ac95 (diff) | |
download | lufa-09b2254b33221e8a07466e91622313e20a7d7345.tar.gz lufa-09b2254b33221e8a07466e91622313e20a7d7345.tar.bz2 lufa-09b2254b33221e8a07466e91622313e20a7d7345.zip |
Minor clean up of maintenance and integrations scripts.
-rw-r--r-- | LUFA/StudioIntegration/makefile | 2 | ||||
-rw-r--r-- | Maintenance/makefile | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index 0d481089a..860b5983d 100644 --- a/LUFA/StudioIntegration/makefile +++ b/LUFA/StudioIntegration/makefile @@ -54,7 +54,7 @@ generate_vsix: $(EXTENSION_OUTPUT_XML) $(MODULE_OUTPUT_XML) @xsltproc --stringparam extension-version "$(EXT_VERSION_NUM)" XSLT/lufa_vsmanifest_transform.xslt VSIX/extension.vsixmanifest > $(LUFA_ROOT)/../extension.vsixmanifest @echo "Generating Atmel Studio VSIX Extension file..." - @cd $(LUFA_ROOT)/../ && zip LUFA_AS_Extension.vsix -q -9 -r --exclude=*StudioIntegration* * + @cd $(LUFA_ROOT)/../ && zip LUFA_AS_Extension.vsix -q -9 -r --exclude=*$(notdir $(DOXYGEN_TAG_FILE_XML)) --exclude=*StudioIntegration* * @echo "Atmel Studio VSIX Extension file generated." check_filenames: $(TEMP_MANIFEST_XML) diff --git a/Maintenance/makefile b/Maintenance/makefile index d5786b4f7..3751f18ad 100644 --- a/Maintenance/makefile +++ b/Maintenance/makefile @@ -27,11 +27,11 @@ upgrade-doxygen: @echo Doxygen configuration update complete. # Make all possible bootloaders for all targets and configurations as set by the BootloaderTest build test -# and store them in a seperate directory called "Bootloaders" +# and store them in a separate directory called "Bootloaders" make_bootloaders: @echo "build_bootloaders:" > BuildMakefile @printf "\t-mkdir Bootloaders 2>/dev/null\n\n" >> BuildMakefile - + @while read line; \ do \ build_cfg=`echo $$line | grep -v "#" | sed 's/ //g'`; \ @@ -84,4 +84,4 @@ validate-branch: validate-release: check-documentation-placeholders validate-branch -.PHONY: all upgrade-doxygen make-as4-projects make_bootloaders check-documentation-placeholders validate-branch
\ No newline at end of file +.PHONY: all upgrade-doxygen make_bootloaders check-documentation-placeholders validate-branch
\ No newline at end of file |