1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2025-04-21 12:27:27 +03:00

uplevel cmdline patches (entire set won't build right now)

This commit is contained in:
Wolfgang Spraul
2012-01-11 00:28:19 +01:00
parent 4d628c3787
commit a27777996a
11 changed files with 1280 additions and 1210 deletions

View File

@@ -67,15 +67,34 @@ if [ "$1" == "test" ]; then
$EESCHEMA --netlist atusb.sch
ls -la *.net
echo -----
echo Displaying pcbnew help text:
$PCBNEW --help
echo -----
echo Listing enabled layers:
$PCBNEW --list-layers atusb.brd
echo -----
echo Generating .drl drill files:
$PCBNEW --drill atusb.brd
ls -la *.drl
echo -----
echo Listing enabled layers:
$PCBNEW --list-layers atusb.brd
# We are currently not testing options affecting plotting operation
# such as --layers --plot-mirror and others.
echo Plotting GERBER:
$PCBNEW --plot=gerber atusb.brd
ls -la *.{gbr,gba,gbs,gbo,gts}
echo -----
echo Plotting Postscript:
$PCBNEW --plot=ps atusb.brd
ls -la *.ps
echo -----
echo Plotting DXF:
$PCBNEW --plot=dxf atusb.brd
ls -la *.dxf
echo -----
echo Plotting SVG:
$PCBNEW --svg=selected atusb.brd
ls -la *.svg
echo -----
echo Generating .rpt design rule file:
$PCBNEW --drc atusb.brd
@@ -97,33 +116,6 @@ if [ "$1" == "test" ]; then
$PCBNEW --vrml atusb.brd
ls -la *.wrl
echo -----
# We are currently not testing options affecting plotting operation
# such as --layers --mirror --exlude-pcb-edge --fill-all-zones
echo Plotting GERBER:
$PCBNEW --plot=gerber atusb.brd
ls -la *.{gbr,gba,gbs,gbo,gts}
echo -----
echo Plotting HPGL:
$PCBNEW --plot=hpgl atusb.brd
ls -la *.plt
echo -----
echo Plotting Postscript \(A4\):
$PCBNEW --plot=ps_a4 atusb.brd
ls -la *.ps
echo -----
echo Plotting Postscript:
$PCBNEW --plot=ps atusb.brd
ls -la *.ps
echo -----
echo Plotting DXF:
$PCBNEW --plot=dxf atusb.brd
ls -la *.dxf
echo -----
echo Plotting SVG:
$PCBNEW --svg atusb.brd
ls -la *.svg
echo -----
cd ../..
exit
fi
@@ -145,12 +137,16 @@ if [ "$1" == "clean" ]; then
atusb.cmp \
atusb.csv \
atusb.wrl \
atusb-Back.gbr atusb-Comments.gbr atusb-Drawings.gbr atusb-Front.gba \
atusb-Mask_Back.gts atusb-Mask_Front.gbr atusb-PCB_Edges.gbr \
atusb-SilkS_Front.gbs atusb-SoldP_Front.gbo
atusb-Front.{gba,ps,dxf,svg} \
atusb-Back.{gbr,ps,dxf,svg} \
atusb-Comments.{gbr,ps,dxf} \
atusb-Drawings.{gbr,ps,dxf} \
atusb-Mask_Front.{gbr,ps,dxf} \
atusb-Mask_Back.{gts,ps,dxf} \
atusb-PCB_Edges.{gbr,ps,dxf} \
atusb-SilkS_Front.{gbs,ps,dxf,svg} \
atusb-SoldP_Front.{gbo,ps,dxf}
rmdir shapes3D
cd ../..
exit
fi
usage