summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-08-18 21:52:39 +0200
committerDean Camera <dean@fourwalledcubicle.com>2013-08-18 21:52:39 +0200
commit56c6b594ac80b5a034999218eded8085cf624650 (patch)
tree16c33ae1bd7ff257052fbb983f9b083805ba331b
parent3f99d419aaf93836f5d05002042def104e799202 (diff)
Wipe working directory before building Atmel Studio extension.LUFA-130901-BETA
-rw-r--r--LUFA/StudioIntegration/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile
index 5a3f7933a8..2649598d9f 100644
--- a/LUFA/StudioIntegration/makefile
+++ b/LUFA/StudioIntegration/makefile
@@ -45,7 +45,10 @@ MSHELP_GEN_PARAMS := --stringparam generate.toc "book toc" \
--stringparam root.filename "LUFA" \
--stringparam html.stylesheet "lufa_studio_help_styling.css"
-all: generate_xml check_filenames generate_vsix
+all: clear_project_dirs generate_xml check_filenames generate_vsix
+
+clear_project_dirs:
+ @make -s -C $(LUFA_ROOT)/.. clean
clean:
@rm -f $(TEMP_MANIFEST_XML) $(MODULE_OUTPUT_XML) $(EXTENSION_OUTPUT_XML) $(DOXYGEN_TAG_FILE_XML) $(DOXYGEN_COMBINED_XML) $(MSHELP_OUTPUT_XML)