snapshot
[hw/teleterra] / Makefile
1 # intentionally want to rebuild drc and bom on every invocation
2 all:    hw
3
4 hw:     drc partslist 
5
6 CC=             sdcc
7 CFLAGS=         -mpic14 -p16f886
8 LDFLAGS=        
9
10 drc:    teleterra.sch
11         -gnetlist -g drc2 teleterra.sch -o teleterra.drc
12
13 partslist:      teleterra.sch
14         gnetlist -g bom -o teleterra.unsorted teleterra.sch
15         head -n1 teleterra.unsorted > partslist
16         tail -n+2 teleterra.unsorted | sort >> partslist
17         rm -f teleterra.unsorted
18
19 pcb:    teleterra.sch project
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 teleterra.xy:   teleterra.pcb
38         pcb -x bom teleterra.pcb
39
40 teleterra.back.gbr:     teleterra.pcb
41         pcb -x gerber teleterra.pcb
42
43 zip:    teleterra.back.gbr teleterra.backmask.gbr teleterra.fab.gbr teleterra.front.gbr teleterra.frontmask.gbr teleterra.frontpaste.gbr teleterra.frontsilk.gbr teleterra.plated-drill.cnc
44         zip teleterra.zip *.gbr *.cnc
45
46 clean:
47         rm -f *.bom *.drc *.log *~ teleterra.ps *.gbr *.cnc *bak* *- *.zip 
48         rm -f *.net *.xy *.cmd *.png partslist
49         rm -f *.partslist *.new.pcb *.unsorted
50         rm -f *.hex *.cod *.lst *.ps *.o *.asm
51