]> www.fi.muni.cz Git - bike-lights.git/blob - schematics/Makefile
pwm.c: channels running - visible from the outside
[bike-lights.git] / schematics / Makefile
1 WEB_DIR=/home/kas/html/bike-lights/
2 WEB_FILES=pcb-back.png pcb-front.png schematics.png handlebar.png
3 GERBER_FILES=\
4         lights.top.gbr \
5         lights.bottom.gbr \
6         lights.topmask.gbr \
7         lights.bottommask.gbr \
8         lights.topsilk.gbr \
9         lights.bottomsilk.gbr \
10         lights.plated-drill.cnc
11
12 all:
13         @echo "Usage: make [clean|web|gerber|fab|lights.pcb]"
14
15 clean:
16         rm -f lights.cmd lights.jpg lights.net lights.new.pcb lights.pcb- \
17                 lights.png lights.ps lights.sch~ pcb-back.png pcb-front.png \
18                 schematics.png *.gbr *.cnc
19
20 web: $(WEB_FILES)
21         test -d $(WEB_DIR) && install -m 644 $(WEB_FILES) $(WEB_DIR)
22
23 lights.pcb: lights.sch lights.prj
24         gsch2pcb lights.prj
25
26 pcb-front.png: lights.pcb
27         pcb -x png --dpi 150 --photo-mode lights.pcb \
28                 && mv lights.png $@
29
30 pcb-back.png: lights.pcb
31         pcb -x png --dpi 150 --photo-mode --photo-flip-x lights.pcb \
32                 && mv lights.png $@
33
34 schematics.png: lights.sch
35         gschem -s image.scm lights.sch -o schematics.png
36
37 handlebar-big.png: handlebar.sch
38         gschem -s image.scm handlebar.sch -o handlebar-big.png
39
40 handlebar.png: handlebar-big.png
41         convert -crop 450x300+320+170 handlebar-big.png handlebar.png
42
43 gerber: $(GERBER_FILES)
44
45 $(GERBER_FILES): lights.pcb
46         pcb -x gerber lights.pcb
47
48 fab: $(GERBER_FILES)
49         @sh -c 'D=bike-lights-`date +\%Y\%m\%d-\%H\%M` && mkdir $$D && \
50                 cp lights.top.gbr $$D/bike-lights.gtl && \
51                 cp lights.bottom.gbr $$D/bike-lights.gbl && \
52                 cp lights.topmask.gbr $$D/bike-lights.gts && \
53                 cp lights.bottommask.gbr $$D/bike-lights.gbs && \
54                 cp lights.topsilk.gbr $$D/bike-lights.gto && \
55                 cp lights.bottomsilk.gbr $$D/bike-lights.gbo && \
56                 cp lights.plated-drill.cnc $$D/bike-lights.txt && \
57                 zip -r $$D.zip $$D && \
58                 echo "Done. Output in $$D.zip."; \
59                 echo "You may also want to do git tag gerber-fab-$$D" '
60
61 .PHONY: gerber