FreeCalypso > hg > fc-small-hw
diff bb2fc/pcb/Makefile @ 0:0f9bdd60ce50
fc-small-hw separated from old freecalypso-schem repo
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 21 Oct 2019 00:53:38 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bb2fc/pcb/Makefile Mon Oct 21 00:53:38 2019 +0000 @@ -0,0 +1,25 @@ +ALL= gerbers.zip bb2fc_pcb.ps bb2fc_pcb.pdf +EXPARG= + +all: ${ALL} + +.SUFFIXES: .ps .pdf + +.ps.pdf: + ps2pdf $*.ps + +bb2fc_pcb.ps: bb2fc.pcb + pcb -x ps --psfile $@ ${EXPARG} bb2fc.pcb + +gerbers.d: bb2fc.pcb + -rm -rf $@ + mkdir $@ + pcb -x gerber --gerberfile gerbers.d/bb2fc ${EXPARG} bb2fc.pcb + +gerbers.zip: gerbers.d + -rm -f $@ + cd gerbers.d; zip ../gerbers.zip * + +clean: + rm -f *.ps *.pdf bb2fc.pcb- + rm -rf gerbers.*