1
0
mirror of git://projects.qi-hardware.com/kicad-libs.git synced 2024-07-03 07:36:43 +03:00
kicad-libs/components/Makefile
Werner Almesberger 78640707f4 components/: generate for connectors CONN_1 to CONN_40X2 (in gencon.lib)
This creates name collisions with manually created connectors in
con.lib, which we may want to resolve.
2012-06-09 22:28:58 -03:00

46 lines
867 B
Makefile

#
# From http://svn.openmoko.org/trunk/gta02-core/components/
#
# Note that we don't have the concept of a "library of everything" so far.
#
GEN = gencon.lib
.PHONY: all sch catalog view upload missing clean spotless
all: sch
# @echo "make what ? targets: sch loe"
# @exit 1
sch: $(GEN)
eeschema `pwd`/components.sch
DESCR-dcm: *.dcm
../scripts/dcm2desc -L . >$@ || { rm -f $@; exit 1; }
catalog catalog.pdf: EXPAND DESCR-dcm *.lib $(GEN)
genex -p -L . EXPAND DESCR-dcm >catalog.pdf || \
{ rm -f catalog.pdf; exit 1; }
view: catalog.pdf
$${DSV_PDFVIEWER:-xpdf} catalog.pdf
upload: catalog.pdf
qippl catalog.pdf tmp/kicad-libs-components.pdf
missing: $(GEN)
../scripts/missing-in-tree -L . EXPAND
%.lib: %.pl
./$< >$@ || { rm -f $@; exit 1; }
#loe:
# ./mkloe
clean:
rm -f DESCR-dcm
spotless: clean
rm -f catalog.pdf $(GEN)