move to shared scheme dir, etc
[hw/telemetrum] / Makefile
1 # intentionally want to rebuild drc and bom on every invocation
2 all:    drc partslist partslist.csv pcb
3
4 drc:    telemetrum.sch Makefile
5         -gnetlist -g drc2 telemetrum.sch -o telemetrum.drc
6
7 partslist:      telemetrum.sch Makefile
8         gnetlist -g bom -o telemetrum.unsorted telemetrum.sch
9         head -n1 telemetrum.unsorted > partslist
10         tail -n+2 telemetrum.unsorted | sort >> partslist
11         rm -f telemetrum.unsorted
12
13 partslist.csv:  telemetrum.sch Makefile
14         gnetlist -L ../altusmetrum/scheme -g partslistgag \
15                 -o telemetrum.unsorted telemetrum.sch
16         head -n1 telemetrum.unsorted > partslist.csv
17         tail -n+2 telemetrum.unsorted | sort -t \, -k 8 >> partslist.csv
18         rm -f telemetrum.unsorted
19
20 pcb:    telemetrum.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 telemetrum.xy:  telemetrum.pcb
39         pcb -x bom telemetrum.pcb
40
41 telemetrum.bottom.gbr:  telemetrum.pcb
42         pcb -x gerber telemetrum.pcb
43
44 zip:    telemetrum.bottom.gbr telemetrum.bottommask.gbr telemetrum.fab.gbr telemetrum.top.gbr telemetrum.topmask.gbr telemetrum.toppaste.gbr telemetrum.topsilk.gbr telemetrum.group2.gbr telemetrum.group3.gbr telemetrum.plated-drill.cnc telemetrum.xy  Makefile # telemetrum.xls
45         zip telemetrum.zip telemetrum.*.gbr telemetrum.*.cnc telemetrum.xy # telemetrum.xls
46
47 clean:
48         rm -f *.bom *.drc *.log *~ telemetrum.ps *.gbr *.cnc *bak* *- *.zip 
49         rm -f *.net *.xy *.cmd *.png partslist partslist.csv
50         rm -f *.partslist *.new.pcb *.unsorted telemetrum.xls
51