Rakefile: remove unused netlist export

This commit is contained in:
King Kévin 2021-12-16 14:28:15 +01:00
parent dd5f301225
commit 9d0b94fa07
1 changed files with 0 additions and 10 deletions

View File

@ -56,11 +56,6 @@ task :library do
sh "#{qeda} generate ."
end
desc "export netlist"
net = [ "#{name}.tdx" ]
task :netlist => net
CLOBBER.include(net)
desc "export BOMs from schematic"
boms = [ "#{name}.bom.csv" ]
task :bom => boms
@ -125,11 +120,6 @@ rule ".brd.zip" => ".versioned.lht" do |t|
sh "zip --quiet #{t.name} #{base}.brd.xln #{base}.brd.a* #{base}.brd.g*"
end
desc "export netlist from schematic"
rule ".tdx" => ".sch" do |t|
sh "lepton-netlist -g tEDAx -o #{t.name} #{t.source} 2> /dev/null"
end
desc "generate BOM file from schematic"
rule ".bom.csv" => ".sch" do |t|
attributes = ["device", "value", "description", "footprint", "manufacturer", "mpn", "datasheet", "lcsc", "digikey"]