Change Details
atusb/Makefile |
1 | | .PHONY: all gen generate sch brd xpdf |
| 1 | .PHONY: all gen generate sch brd xpdf front back |
2 | 2 | |
3 | 3 | all: |
4 | | @echo "make what ? target: gen sch brd xpdf" |
| 4 | @echo "make what ? target: gen sch brd xpdf front back" |
5 | 5 | @exit 1 |
6 | 6 | |
7 | 7 | gen generate: |
... | ... | |
16 | 16 | |
17 | 17 | xpdf: |
18 | 18 | xpdf atusb.pdf |
| 19 | |
| 20 | front: atusb-Front.ps |
| 21 | lpr $< |
| 22 | |
| 23 | back: atusb-Back.ps |
| 24 | lpr $< |
| 25 | |
| 26 | # |
| 27 | # Postscript for production of front/back layer, using the toner transfer |
| 28 | # method. Note that other artwork transfer methods may require different |
| 29 | # mirror settings. |
| 30 | # |
| 31 | # We use --ps-pads-drill-opt=none to avoid having any hole before drilling, |
| 32 | # which yields the best results with a CNC drill. For manual drilling, "real" |
| 33 | # would be preferrable. Do not use "small", for this created holes that are |
| 34 | # larger (!) than designed. |
| 35 | # |
| 36 | # Note: all this currenly only works properly if the board has been saved with |
| 37 | # all zones filled. |
| 38 | # |
| 39 | |
| 40 | atusb-Front.ps: atusb.brd |
| 41 | pcbnew -p=ps_a4 -l Front --ps-pads-drill-opt=none --mirror $< |
| 42 | |
| 43 | atusb-Back.ps: atusb.brd |
| 44 | pcbnew -p=ps_a4 -l Back --ps-pads-drill-opt=none $< |
Download the corresponding diff file