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