KiCad Libraries
Sign in or create your account | Project List | Help
KiCad Libraries Git Source Tree
Root/
Source at commit d37268a6ba7dd08f54960a03ca755dc943e3636c created 8 years 5 months ago. By Werner Almesberger, modules/: add PAD_S_120x120; correct classification of PAD_S_150x150 | |
---|---|
1 | # |
2 | # From http://svn.openmoko.org/trunk/gta02-core/components/ |
3 | # |
4 | # Note that we don't have the concept of a "library of everything" so far. |
5 | # |
6 | |
7 | GEN = gencon.lib |
8 | |
9 | .PHONY: all sch catalog view upload missing clean spotless |
10 | |
11 | all: $(GEN) |
12 | |
13 | # @echo "make what ? targets: sch loe" |
14 | # @exit 1 |
15 | |
16 | sch: $(GEN) |
17 | eeschema `pwd`/components.sch |
18 | |
19 | DESCR-dcm: *.dcm |
20 | ../scripts/dcm2desc -L . >$@ || { rm -f $@; exit 1; } |
21 | |
22 | catalog catalog.pdf: HIERARCHY DESCR-dcm *.lib $(GEN) |
23 | genkicat -p -L . HIERARCHY DESCR-dcm >catalog.pdf || \ |
24 | { rm -f catalog.pdf; exit 1; } |
25 | |
26 | view: catalog.pdf |
27 | $${DSV_PDFVIEWER:-xpdf} catalog.pdf |
28 | |
29 | upload: catalog.pdf |
30 | qippl catalog.pdf tmp/kicad-libs-components.pdf |
31 | |
32 | missing: $(GEN) |
33 | ../scripts/missing-in-tree -L . HIERARCHY |
34 | |
35 | %.lib: %.pl |
36 | ./$< >$@ || { rm -f $@; exit 1; } |
37 | |
38 | #loe: |
39 | # ./mkloe |
40 | |
41 | clean: |
42 | rm -f DESCR-dcm |
43 | |
44 | spotless: clean |
45 | rm -f catalog.pdf $(GEN) |
46 |
Branches:
master