fix soldermask clearance on cpu
[hw/telepyro] / Makefile
1 # intentionally want to rebuild drc and bom on every invocation
2 all:    drc partslist
3
4 drc:    telepyro.sch
5         -gnetlist -g drc2 telepyro.sch -o telepyro.drc
6
7 partslist:      telepyro.sch
8         gnetlist -g bom -o telepyro.unsorted telepyro.sch
9         head -n1 telepyro.unsorted > partslist
10         tail -n+2 telepyro.unsorted | sort >> partslist
11         rm -f telepyro.unsorted
12
13 pcb:    telepyro.sch project
14         gsch2pcb project
15
16 # note that 'gschlas -e foo.sch' will embed all symbols in the schematic, this
17 # might be a really good idea for publishing designs to the web that others
18 # might review?  Like this example from DJ:
19 #
20 #web :
21 #        for i in channel.sch ethernet.sch power.sch mcu.sch; do \
22 #          cp $$i tmp.sch ; \
23 #          gschlas -e tmp.sch ; \
24 #          mv tmp.sch ${WEB}/$$i; \
25 #        done
26
27 # this shoves local work out to the git.gag.com repository
28 push:   
29         git push --mirror
30
31 telepyro.xy:    telepyro.pcb
32         pcb -x bom telepyro.pcb
33
34 telepyro.back.gbr:      telepyro.pcb
35         pcb -x gerber telepyro.pcb
36
37 zip:    telepyro.back.gbr telepyro.backmask.gbr telepyro.fab.gbr telepyro.front.gbr telepyro.frontmask.gbr telepyro.frontpaste.gbr telepyro.frontsilk.gbr telepyro.plated-drill.cnc
38         zip telepyro.zip *.gbr *.cnc
39
40 clean:
41         rm -f *.bom *.drc *.log *~ telepyro.ps *.gbr *.cnc *bak* *- *.zip 
42         rm -f *.net *.xy *.cmd *.png partslist
43         rm -f *.partslist *.new.pcb *.unsorted
44