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