diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-08-18 21:52:39 +0200 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-08-18 21:52:39 +0200 |
commit | 56c6b594ac80b5a034999218eded8085cf624650 (patch) | |
tree | 16c33ae1bd7ff257052fbb983f9b083805ba331b /LUFA | |
parent | 3f99d419aaf93836f5d05002042def104e799202 (diff) | |
download | lufa-56c6b594ac80b5a034999218eded8085cf624650.tar.gz lufa-56c6b594ac80b5a034999218eded8085cf624650.tar.bz2 lufa-56c6b594ac80b5a034999218eded8085cf624650.zip |
Wipe working directory before building Atmel Studio extension.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/StudioIntegration/makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index 5a3f7933a..2649598d9 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) |