move to local copy of partslistgag script
[hw/teledongle] / Makefile
1 # intentionally want to rebuild drc and bom on every invocation
2 all:    drc partslist partslist.csv pcb
3
4 drc:    teledongle.sch
5         -gnetlist -g drc2 teledongle.sch -o teledongle.drc
6
7 partslist:      teledongle.sch
8         gnetlist -g bom -o teledongle.unsorted teledongle.sch
9         head -n1 teledongle.unsorted > partslist
10         tail -n+2 teledongle.unsorted | sort >> partslist
11         rm -f teledongle.unsorted
12
13 partslist.csv:  teledongle.sch Makefile
14         gnetlist -m scheme/gnet-partslistgag.scm -g partslistgag 
15                 -o teledongle.unsorted teledongle.sch
16         head -n1 teledongle.unsorted > partslist.csv
17         tail -n+2 teledongle.unsorted | sort -t \, -k 8 >> partslist.csv
18         rm -f teledongle.unsorted
19
20 pcb:    teledongle.sch project
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 zip:    teledongle.back.gbr teledongle.backmask.gbr teledongle.fab.gbr teledongle.front.gbr teledongle.frontmask.gbr teledongle.frontpaste.gbr teledongle.frontsilk.gbr teledongle.outline.gbr teledongle.plated-drill.cnc teledongle.xy
39         zip teledongle.zip teledongle.*.gbr teledongle.*.cnc teledongle.xy
40
41 clean:
42         rm -f *.bom *.drc *.log *~ teledongle.ps *.gbr *.cnc *bak* *- *.zip 
43         rm -f *.net *.xy *.cmd *.png partslist partslist.csv
44         rm -f *.partslist *.new.pcb *.unsorted teledongle.xy
45