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