X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/bbffe94a9d425128aa4f403d285a1a848e00b4a5..cff8a751bb4b6174bfc226dee72bec9cb9363122:/LUFA/StudioIntegration/makefile diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index 53b61a396..49f3c35e3 100644 --- a/LUFA/StudioIntegration/makefile +++ b/LUFA/StudioIntegration/makefile @@ -50,10 +50,12 @@ generate_xml: $(TEMP_MANIFEST_XML) generate_vsix: $(EXTENSION_OUTPUT_XML) $(MODULE_OUTPUT_XML) @echo "Generating ASF cache files..." + @rm -f $(LUFA_ROOT)/../content.xml.cache + @rm -f $(LUFA_ROOT)/../ExampleProjects.xml @python generate_caches.py $(LUFA_ROOT)/../ @echo "Archiving Content..." - @cd $(LUFA_ROOT)/../ && zip contents.zip -q -9 -r --exclude=*$(notdir $(DOXYGEN_TAG_FILE_XML)) --exclude=*StudioIntegration* --exclude=*Maintenance* LUFA Bootloaders Demos Projects extension.xml README.txt + @cd $(LUFA_ROOT)/../ && zip contents.zip -q -9 -r --exclude=*$(notdir $(DOXYGEN_TAG_FILE_XML)) --exclude=*StudioIntegration* LUFA Bootloaders Demos Projects extension.xml README.txt @echo "Creating VSIX Dependencies..." @cp $(LUFA_ROOT)/DoxygenPages/Images/LUFA_thumb.png $(LUFA_ROOT)/../PreviewThumb.png @@ -71,7 +73,8 @@ check_filenames: $(TEMP_MANIFEST_XML) @for i in `xsltproc XSLT/lufa_filelist_transform.xslt $< | grep -v "^<" | sed -e "/^$$/d"`; do \ if ( ! test -f "$(LUFA_ROOT)/$$i" ); then \ echo "Source file $$i does not exist!"; \ + exit 1; \ fi; \ done; -.PHONY: all clean generate_xml check_filenames generate_vsix \ No newline at end of file +.PHONY: all clean generate_xml generate_vsix check_filenames