diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-01-03 16:16:45 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-01-03 16:16:45 +0000 |
commit | 56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a (patch) | |
tree | 023f9b967991af7269befde633ce254eddc86ca2 /LUFA/StudioIntegration/makefile | |
parent | 5386a5a7ffd4a2b739ce6f41d918378a6f70da15 (diff) | |
download | lufa-56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a.tar.gz lufa-56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a.tar.bz2 lufa-56f03a793c8f6d63b3ce70bfdb1f4c4f05e1934a.zip |
Move out Studio Integration XML transform files to their own directory for neatness.
Diffstat (limited to 'LUFA/StudioIntegration/makefile')
-rw-r--r-- | LUFA/StudioIntegration/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index 33dcf8323..aa1feb1de 100644 --- a/LUFA/StudioIntegration/makefile +++ b/LUFA/StudioIntegration/makefile @@ -38,17 +38,17 @@ $(TEMP_MANIFEST_XML): $(DOXYGEN_TAG_FILE_XML) generate_xml: $(TEMP_MANIFEST_XML) @echo "Processing asf.xml file..." - @xsltproc lufa_module_transform.xslt $< | xsltproc lufa_indent_transform.xslt - > $(MODULE_OUTPUT_XML) + @xsltproc XSLT/lufa_module_transform.xslt $< | xsltproc XSLT/lufa_indent_transform.xslt - > $(MODULE_OUTPUT_XML) @echo "Atmel Studio asf.xml file generated." @echo "Processing extension.xml file..." - @xsltproc lufa_extension_transform.xslt $< | xsltproc lufa_indent_transform.xslt - > $(EXTENSION_OUTPUT_XML) + @xsltproc XSLT/lufa_extension_transform.xslt $< | xsltproc XSLT/lufa_indent_transform.xslt - > $(EXTENSION_OUTPUT_XML) @echo "Atmel Studio extension.xml file generated." @rm $(TEMP_MANIFEST_XML) -check_filenames: $(TEMP_MANIFEST_XML) - @for i in `xsltproc lufa_filelist_transform.xslt manifest.xml | grep -v "^<" | sed -e "/^$$/d"`; do \ +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!"; \ fi; \ |