From 3d82bc3dbeae2803cc26bcd722f859a9a9974333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 16 Dec 2021 14:28:15 +0100 Subject: [PATCH] Rakefile: remove unused netlist export --- Rakefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Rakefile b/Rakefile index 5823561..2cd2b05 100644 --- a/Rakefile +++ b/Rakefile @@ -56,11 +56,6 @@ task :library do sh "#{qeda} generate ." end -desc "export netlist from schematic" -net = [ "#{name}.tdx" ] -task :netlist => net -CLOBBER.include(net) - desc "export BOMs from schematic" boms = [ "#{name}.bom.csv" ] task :bom => boms @@ -120,11 +115,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-sku", "digikey-sku", "aliexpress-sku"]