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