diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-11 14:48:15 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-11 14:48:15 +0200 |
commit | 0149fcfa2bd9ac8c9f6b05851f7264f005aa2305 (patch) | |
tree | 3757a7148377bf18e32234d375444ffccbc5a8f0 /src/ee/tools/templates | |
parent | effb3470dd1be3a0dd1eaa83991cef45b5e08dab (diff) | |
download | ee-python-0149fcfa2bd9ac8c9f6b05851f7264f005aa2305.tar.gz ee-python-0149fcfa2bd9ac8c9f6b05851f7264f005aa2305.tar.bz2 ee-python-0149fcfa2bd9ac8c9f6b05851f7264f005aa2305.tar.xz ee-python-0149fcfa2bd9ac8c9f6b05851f7264f005aa2305.zip |
drawio-to-parts: new tool.
ee.xsd: new type: Assembly and AssemblyPart. Should probably be its own
file type.
ee.part: Better DSL instead of using the raw xml types.
Diffstat (limited to 'src/ee/tools/templates')
-rw-r--r-- | src/ee/tools/templates/build.ninja.j2 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ee/tools/templates/build.ninja.j2 b/src/ee/tools/templates/build.ninja.j2 index d62f350..b9a65df 100644 --- a/src/ee/tools/templates/build.ninja.j2 +++ b/src/ee/tools/templates/build.ninja.j2 @@ -53,6 +53,15 @@ rule import-parts-yaml description = import-parts-yaml $in command = $ee import-parts-yaml --in $in --out $out +rule drawio-decompress + command = $ee drawio-decompress --in $in --out $out + +rule drawio-to-parts + command = $ee drawio-to-parts --in $in --out $out $args + +rule part-from-excel + command = $ee part-from-excel --in $in --out $out --sheet "$sheet" + {% if gerber_zip is defined %} build gerbers: phony {{ gerber_zip }} build {{ gerber_zip }}: kicad-gerber $pcb |